Interface IFont
-
public interface IFont
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
float
getSize()
boolean
isBold()
boolean
isItalic()
boolean
isStrikeThrough()
boolean
isUnderline()
void
setBold(boolean isBold)
void
setItalic(boolean isItalic)
void
setName(java.lang.String name)
void
setSize(float size)
void
setStrikeThrough(boolean isStrikeThrough)
void
setUnderline(boolean isUnderline)
-
-
-
Method Detail
-
isBold
boolean isBold()
-
setBold
void setBold(boolean isBold)
-
isItalic
boolean isItalic()
-
setItalic
void setItalic(boolean isItalic)
-
isUnderline
boolean isUnderline()
-
setUnderline
void setUnderline(boolean isUnderline)
-
isStrikeThrough
boolean isStrikeThrough()
-
setStrikeThrough
void setStrikeThrough(boolean isStrikeThrough)
-
getName
java.lang.String getName()
-
setName
void setName(java.lang.String name)
-
getSize
float getSize()
-
setSize
void setSize(float size)
-
-