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

org.omg.spec.bpmn.model.Font Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2020.10.05 at 10:10:30 AM UTC 
//


package org.omg.spec.bpmn.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;


/**
 * 

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", namespace = "http://www.omg.org/spec/DD/20100524/DC") public class Font { @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "size") protected Double size; @XmlAttribute(name = "isBold") protected Boolean isBold; @XmlAttribute(name = "isItalic") protected Boolean isItalic; @XmlAttribute(name = "isUnderline") protected Boolean isUnderline; @XmlAttribute(name = "isStrikeThrough") 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 - 2024 Weber Informatics LLC | Privacy Policy