Interface Style
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
StyleImpl
public interface Style extends java.io.Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StyleReferenceImplgetBasedOn()StyleReferenceImplgetCharstyle()intgetIsDefault()intgetIsRoot()java.lang.StringgetName()StyleReferenceImplgetNext()StylePropertiesgetProperties()intgetUid()voidsetBasedOn(StyleReferenceImpl basedOn)voidsetCharstyle(StyleReferenceImpl charstyle)voidsetIsDefault(int isDefault)voidsetIsRoot(int isRoot)voidsetName(java.lang.String name)voidsetNext(StyleReferenceImpl next)voidsetProperties(StyleProperties properties)voidsetUid(int uid)
-
-
-
Method Detail
-
getName
java.lang.String getName()
- Returns:
- the name
-
setName
void setName(java.lang.String name)
- Parameters:
name- the name to set
-
getUid
int getUid()
- Returns:
- the uid
-
setUid
void setUid(int uid)
- Parameters:
uid- the uid to set
-
getIsDefault
int getIsDefault()
- Returns:
- the isDefault
-
setIsDefault
void setIsDefault(int isDefault)
- Parameters:
isDefault- the isDefault to set
-
getIsRoot
int getIsRoot()
- Returns:
- the isRoot
-
setIsRoot
void setIsRoot(int isRoot)
- Parameters:
isRoot- the isRoot to set
-
getBasedOn
StyleReferenceImpl getBasedOn()
- Returns:
- the basedOn
-
setBasedOn
void setBasedOn(StyleReferenceImpl basedOn)
- Parameters:
basedOn- the basedOn to set
-
getNext
StyleReferenceImpl getNext()
- Returns:
- the next
-
setNext
void setNext(StyleReferenceImpl next)
- Parameters:
next- the next to set
-
getCharstyle
StyleReferenceImpl getCharstyle()
- Returns:
- the charstyle
-
setCharstyle
void setCharstyle(StyleReferenceImpl charstyle)
- Parameters:
charstyle- the charstyle to set
-
getProperties
StyleProperties getProperties()
- Returns:
- the properties
-
setProperties
void setProperties(StyleProperties properties)
- Parameters:
properties- the properties to set
-
-