1 // 2 // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 3 // See https://eclipse-ee4j.github.io/jaxb-ri 4 // Any modifications to this file will be lost upon recompilation of the source schema. 5 // Generated on: 2022.02.28 at 10:57:04 AM AEDT 6 // 7 8 9 package xuml.tools.miuml.metamodel.jaxb; 10 11 import jakarta.xml.bind.annotation.XmlAccessType; 12 import jakarta.xml.bind.annotation.XmlAccessorType; 13 import jakarta.xml.bind.annotation.XmlAttribute; 14 import jakarta.xml.bind.annotation.XmlType; 15 16 17 /** 18 * R706 19 * 20 * <p>Java class for BooleanType complex type. 21 * 22 * <p>The following schema fragment specifies the expected content contained within this class. 23 * 24 * <pre> 25 * <complexType name="BooleanType"> 26 * <complexContent> 27 * <extension base="{http://www.miuml.org/metamodel}AtomicType"> 28 * <attribute name="DefaultValue" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" /> 29 * </extension> 30 * </complexContent> 31 * </complexType> 32 * </pre> 33 * 34 * 35 */ 36 @XmlAccessorType(XmlAccessType.FIELD) 37 @XmlType(name = "BooleanType") 38 public class BooleanType 39 extends AtomicType 40 { 41 42 @XmlAttribute(name = "DefaultValue", required = true) 43 protected boolean defaultValue; 44 45 /** 46 * Gets the value of the defaultValue property. 47 * 48 */ 49 public boolean isDefaultValue() { 50 return defaultValue; 51 } 52 53 /** 54 * Sets the value of the defaultValue property. 55 * 56 */ 57 public void setDefaultValue(boolean value) { 58 this.defaultValue = value; 59 } 60 61 }