Package org.omg.spec.bpmn.model
Class Font
- java.lang.Object
-
- org.omg.spec.bpmn.model.Font
-
public class Font extends Object
Java class for Font complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Font"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="size" type="{http://www.w3.org/2001/XMLSchema}double" /> <attribute name="isBold" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="isItalic" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="isUnderline" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="isStrikeThrough" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Font()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Gets the value of the name property.Double
getSize()
Gets the value of the size property.Boolean
isIsBold()
Gets the value of the isBold property.Boolean
isIsItalic()
Gets the value of the isItalic property.Boolean
isIsStrikeThrough()
Gets the value of the isStrikeThrough property.Boolean
isIsUnderline()
Gets the value of the isUnderline property.void
setIsBold(Boolean value)
Sets the value of the isBold property.void
setIsItalic(Boolean value)
Sets the value of the isItalic property.void
setIsStrikeThrough(Boolean value)
Sets the value of the isStrikeThrough property.void
setIsUnderline(Boolean value)
Sets the value of the isUnderline property.void
setName(String value)
Sets the value of the name property.void
setSize(Double value)
Sets the value of the size property.
-
-
-
Method Detail
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value
- allowed object isString
-
getSize
public Double getSize()
Gets the value of the size property.- Returns:
- possible object is
Double
-
setSize
public void setSize(Double value)
Sets the value of the size property.- Parameters:
value
- allowed object isDouble
-
isIsBold
public Boolean isIsBold()
Gets the value of the isBold property.- Returns:
- possible object is
Boolean
-
setIsBold
public void setIsBold(Boolean value)
Sets the value of the isBold property.- Parameters:
value
- allowed object isBoolean
-
isIsItalic
public Boolean isIsItalic()
Gets the value of the isItalic property.- Returns:
- possible object is
Boolean
-
setIsItalic
public void setIsItalic(Boolean value)
Sets the value of the isItalic property.- Parameters:
value
- allowed object isBoolean
-
isIsUnderline
public Boolean isIsUnderline()
Gets the value of the isUnderline property.- Returns:
- possible object is
Boolean
-
setIsUnderline
public void setIsUnderline(Boolean value)
Sets the value of the isUnderline property.- Parameters:
value
- allowed object isBoolean
-
isIsStrikeThrough
public Boolean isIsStrikeThrough()
Gets the value of the isStrikeThrough property.- Returns:
- possible object is
Boolean
-
-