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

au.com.sparxsystems.Association Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.09.13 at 12:06:48 PM EST 
//


package au.com.sparxsystems;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;


/**
 * 

Java class for Association complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Association">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <element name="targetAttributeId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="targetClassId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="aggregrationType" type="{http://www.sparxsystems.com.au/ext}aggregationType"/>
 *         <element name="properties" type="{http://www.sparxsystems.com.au/ext}AssociationProperties"/>
 *         <element name="isNavigable" type="{http://www.w3.org/2001/XMLSchema}boolean" form="qualified"/>
 *       </choice>
 *       <attGroup ref="{http://www.sparxsystems.com.au/ext}ObjectAttribs"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Association", propOrder = { "targetAttributeId", "targetClassId", "aggregrationType", "properties", "isNavigable" }) public class Association { protected String targetAttributeId; protected String targetClassId; protected AggregationType aggregrationType; protected AssociationProperties properties; @XmlElement(namespace = "http://www.sparxsystems.com.au/ext") protected Boolean isNavigable; @XmlAttribute(name = "idref", namespace = "http://www.sparxsystems.com.au/ext") protected QName idref; @XmlAttribute(name = "type", namespace = "http://www.sparxsystems.com.au/ext") protected QName type; @XmlAttribute(name = "name") @XmlSchemaType(name = "anySimpleType") protected String name; @XmlAttribute(name = "scope") @XmlSchemaType(name = "anySimpleType") protected String scope; /** * Gets the value of the targetAttributeId property. * * @return * possible object is * {@link String } * */ public String getTargetAttributeId() { return targetAttributeId; } /** * Sets the value of the targetAttributeId property. * * @param value * allowed object is * {@link String } * */ public void setTargetAttributeId(String value) { this.targetAttributeId = value; } /** * Gets the value of the targetClassId property. * * @return * possible object is * {@link String } * */ public String getTargetClassId() { return targetClassId; } /** * Sets the value of the targetClassId property. * * @param value * allowed object is * {@link String } * */ public void setTargetClassId(String value) { this.targetClassId = value; } /** * Gets the value of the aggregrationType property. * * @return * possible object is * {@link AggregationType } * */ public AggregationType getAggregrationType() { return aggregrationType; } /** * Sets the value of the aggregrationType property. * * @param value * allowed object is * {@link AggregationType } * */ public void setAggregrationType(AggregationType value) { this.aggregrationType = value; } /** * Gets the value of the properties property. * * @return * possible object is * {@link AssociationProperties } * */ public AssociationProperties getProperties() { return properties; } /** * Sets the value of the properties property. * * @param value * allowed object is * {@link AssociationProperties } * */ public void setProperties(AssociationProperties value) { this.properties = value; } /** * Gets the value of the isNavigable property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsNavigable() { return isNavigable; } /** * Sets the value of the isNavigable property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsNavigable(Boolean value) { this.isNavigable = value; } /** * Gets the value of the idref property. * * @return * possible object is * {@link QName } * */ public QName getIdref() { return idref; } /** * Sets the value of the idref property. * * @param value * allowed object is * {@link QName } * */ public void setIdref(QName value) { this.idref = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link QName } * */ public QName getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link QName } * */ public void setType(QName value) { this.type = value; } /** * 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 scope property. * * @return * possible object is * {@link String } * */ public String getScope() { return scope; } /** * Sets the value of the scope property. * * @param value * allowed object is * {@link String } * */ public void setScope(String value) { this.scope = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy