Interface Font
-
- All Superinterfaces:
BpmnModelElementInstance
,ModelElementInstance
- All Known Implementing Classes:
FontImpl
public interface Font extends BpmnModelElementInstance
The DC font element- Author:
- Sebastian Menski
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
java.lang.Double
getSize()
java.lang.Boolean
isBold()
java.lang.Boolean
isItalic()
java.lang.Boolean
isStrikeThrough()
java.lang.Boolean
isUnderline()
void
setBold(boolean isBold)
void
setItalic(boolean isItalic)
void
setName(java.lang.String name)
void
setSize(java.lang.Double size)
void
setStrikeTrough(boolean isStrikeTrough)
void
SetUnderline(boolean isUnderline)
-
Methods inherited from interface org.camunda.bpm.model.bpmn.instance.BpmnModelElementInstance
builder, getScope, isScope
-
Methods inherited from interface org.camunda.bpm.model.xml.instance.ModelElementInstance
addChildElement, getAttributeValue, getAttributeValueNs, getChildElementsByType, getChildElementsByType, getDomElement, getElementType, getModelInstance, getParentElement, getRawTextContent, getTextContent, getUniqueChildElementByNameNs, getUniqueChildElementByType, insertElementAfter, removeAttribute, removeAttributeNs, removeChildElement, replaceChildElement, replaceWithElement, setAttributeValue, setAttributeValue, setAttributeValue, setAttributeValueNs, setAttributeValueNs, setAttributeValueNs, setTextContent, setUniqueChildElementByNameNs, updateAfterReplacement
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
setName
void setName(java.lang.String name)
-
getSize
java.lang.Double getSize()
-
setSize
void setSize(java.lang.Double size)
-
isBold
java.lang.Boolean isBold()
-
setBold
void setBold(boolean isBold)
-
isItalic
java.lang.Boolean isItalic()
-
setItalic
void setItalic(boolean isItalic)
-
isUnderline
java.lang.Boolean isUnderline()
-
SetUnderline
void SetUnderline(boolean isUnderline)
-
isStrikeThrough
java.lang.Boolean isStrikeThrough()
-
setStrikeTrough
void setStrikeTrough(boolean isStrikeTrough)
-
-