cn.lzgabel.bpmn.generator.internal.generated.model.Font Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bpmn-auto-layout Show documentation
Show all versions of bpmn-auto-layout Show documentation
Tools for auto layout bpmn files
//
// 此文件是由 JavaTM Architecture for XML Binding (JAXB) 引用实现 v2.3.2 生成的
// 请访问 https://javaee.github.io/jaxb-v2/
// 在重新编译源模式时, 对此文件的所有修改都将丢失。
// 生成时间: 2021.08.22 时间 07:53:54 PM CST
//
package cn.lzgabel.bpmn.generator.internal.generated.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;
/**
* Font complex type的 Java 类。
*
*
以下模式片段指定包含在此类中的预期内容。
*
*
* <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;
/**
* 获取name属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* 设置name属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* 获取size属性的值。
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getSize() {
return size;
}
/**
* 设置size属性的值。
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setSize(Double value) {
this.size = value;
}
/**
* 获取isBold属性的值。
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsBold() {
return isBold;
}
/**
* 设置isBold属性的值。
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsBold(Boolean value) {
this.isBold = value;
}
/**
* 获取isItalic属性的值。
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsItalic() {
return isItalic;
}
/**
* 设置isItalic属性的值。
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsItalic(Boolean value) {
this.isItalic = value;
}
/**
* 获取isUnderline属性的值。
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsUnderline() {
return isUnderline;
}
/**
* 设置isUnderline属性的值。
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsUnderline(Boolean value) {
this.isUnderline = value;
}
/**
* 获取isStrikeThrough属性的值。
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsStrikeThrough() {
return isStrikeThrough;
}
/**
* 设置isStrikeThrough属性的值。
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsStrikeThrough(Boolean value) {
this.isStrikeThrough = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy