Package org.apache.maven.doxia.site.skin
Class SkinModel
- java.lang.Object
-
- org.apache.maven.doxia.site.skin.SkinModel
-
- All Implemented Interfaces:
Serializable,Cloneable
public class SkinModel extends Object implements Serializable, Cloneable
The<skin>element is the root of the skin descriptor.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSKIN_DESCRIPTOR_LOCATION
-
Constructor Summary
Constructors Constructor Description SkinModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SkinModelclone()Method clone.StringgetEncoding()Get encoding of text content, like the Velocity template itself.StringgetModelEncoding()Get the modelEncoding field.PrerequisitesgetPrerequisites()Get describes the prerequisites in the build environment for using this skin.voidsetEncoding(String encoding)Set encoding of text content, like the Velocity template itself.voidsetModelEncoding(String modelEncoding)Set the modelEncoding field.voidsetPrerequisites(Prerequisites prerequisites)Set describes the prerequisites in the build environment for using this skin.
-
-
-
Field Detail
-
SKIN_DESCRIPTOR_LOCATION
public static final String SKIN_DESCRIPTOR_LOCATION
- See Also:
- Constant Field Values
-
-
Method Detail
-
getEncoding
public String getEncoding()
Get encoding of text content, like the Velocity template itself.- Returns:
- String
-
getModelEncoding
public String getModelEncoding()
Get the modelEncoding field.- Returns:
- String
-
getPrerequisites
public Prerequisites getPrerequisites()
Get describes the prerequisites in the build environment for using this skin.- Returns:
- Prerequisites
-
setEncoding
public void setEncoding(String encoding)
Set encoding of text content, like the Velocity template itself.- Parameters:
encoding- a encoding object.
-
setModelEncoding
public void setModelEncoding(String modelEncoding)
Set the modelEncoding field.- Parameters:
modelEncoding- a modelEncoding object.
-
setPrerequisites
public void setPrerequisites(Prerequisites prerequisites)
Set describes the prerequisites in the build environment for using this skin.- Parameters:
prerequisites- a prerequisites object.
-
-