Package org.teamapps.dto
Class UiFontStyle
- java.lang.Object
-
- org.teamapps.dto.UiFontStyle
-
-
Field Summary
Fields Modifier and Type Field Description protected UiColorbackgroundColorprotected booleanboldprotected UiColorfontColorprotected booleanitalicprotected floatrelativeFontSizeprotected booleanunderline
-
Constructor Summary
Constructors Constructor Description UiFontStyle()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UiColorgetBackgroundColor()booleangetBold()UiColorgetFontColor()booleangetItalic()floatgetRelativeFontSize()UiObjectTypegetUiObjectType()booleangetUnderline()UiFontStylesetBackgroundColor(UiColor backgroundColor)UiFontStylesetBold(boolean bold)UiFontStylesetFontColor(UiColor 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 UiColor getFontColor()
-
getBackgroundColor
public UiColor getBackgroundColor()
-
getBold
public boolean getBold()
-
getUnderline
public boolean getUnderline()
-
getItalic
public boolean getItalic()
-
getRelativeFontSize
public float getRelativeFontSize()
-
setFontColor
public UiFontStyle setFontColor(UiColor fontColor)
-
setBackgroundColor
public UiFontStyle setBackgroundColor(UiColor 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)
-
-