// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.04.12 at 12:36:45 PM BST // package org.savara.bpmn2.model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Font complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <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> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Font", namespace = "http://www.omg.org/spec/DD/20100524/DC") public class Font { @XmlAttribute protected String name; @XmlAttribute protected Double size; @XmlAttribute protected Boolean isBold; @XmlAttribute protected Boolean isItalic; @XmlAttribute protected Boolean isUnderline; @XmlAttribute protected Boolean isStrikeThrough; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the size property. * * @return * possible object is * {@link Double } * */ public Double getSize() { return size; } /** * Sets the value of the size property. * * @param value * allowed object is * {@link Double } * */ public void setSize(Double value) { this.size = value; } /** * Gets the value of the isBold property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsBold() { return isBold; } /** * Sets the value of the isBold property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsBold(Boolean value) { this.isBold = value; } /** * Gets the value of the isItalic property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsItalic() { return isItalic; } /** * Sets the value of the isItalic property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsItalic(Boolean value) { this.isItalic = value; } /** * Gets the value of the isUnderline property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsUnderline() { return isUnderline; } /** * Sets the value of the isUnderline property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsUnderline(Boolean value) { this.isUnderline = value; } /** * Gets the value of the isStrikeThrough property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsStrikeThrough() { return isStrikeThrough; } /** * Sets the value of the isStrikeThrough property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsStrikeThrough(Boolean value) { this.isStrikeThrough = value; } }