Package org.teamapps.dto
Class UiFontStyle
- java.lang.Object
-
- org.teamapps.dto.UiFontStyle
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringbackgroundColorprotected booleanboldprotected java.lang.StringfontColorprotected booleanitalicprotected floatrelativeFontSizeprotected booleanunderline
-
Constructor Summary
Constructors Constructor Description UiFontStyle()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBackgroundColor()booleangetBold()java.lang.StringgetFontColor()booleangetItalic()floatgetRelativeFontSize()UiObjectTypegetUiObjectType()booleangetUnderline()UiFontStylesetBackgroundColor(java.lang.String backgroundColor)UiFontStylesetBold(boolean bold)UiFontStylesetFontColor(java.lang.String fontColor)UiFontStylesetItalic(boolean italic)UiFontStylesetRelativeFontSize(float relativeFontSize)UiFontStylesetUnderline(boolean underline)java.lang.StringtoString()
-
-
-
Method Detail
-
getUiObjectType
public UiObjectType getUiObjectType()
- Specified by:
getUiObjectTypein interfaceUiObject
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getFontColor
public java.lang.String getFontColor()
-
getBackgroundColor
public java.lang.String getBackgroundColor()
-
getBold
public boolean getBold()
-
getUnderline
public boolean getUnderline()
-
getItalic
public boolean getItalic()
-
getRelativeFontSize
public float getRelativeFontSize()
-
setFontColor
public UiFontStyle setFontColor(java.lang.String fontColor)
-
setBackgroundColor
public UiFontStyle setBackgroundColor(java.lang.String backgroundColor)
-
setBold
public UiFontStyle setBold(boolean bold)
-
setUnderline
public UiFontStyle setUnderline(boolean underline)
-
setItalic
public UiFontStyle setItalic(boolean italic)
-
setRelativeFontSize
public UiFontStyle setRelativeFontSize(float relativeFontSize)
-
-