All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.us.isa.bpmn.xmlClasses.omgdc.Font Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.11.08 at 10:16:40 AM GMT+01:00 
//


package es.us.isa.bpmn.xmlClasses.omgdc;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Font") 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy