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

org.omg.uml.Relationship Maven / Gradle / Ivy

//
// 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 org.omg.uml;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Relationship complex type. * *

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

 * <complexType name="Relationship">
 *   <complexContent>
 *     <extension base="{}Element">
 *       <sequence>
 *         <element name="relatedElement" type="{}Element"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Relationship", propOrder = { "relatedElement" }) @XmlSeeAlso({ DirectedRelationship.class }) public abstract class Relationship extends Element { @XmlElement(required = true) protected Element relatedElement; /** * Gets the value of the relatedElement property. * * @return * possible object is * {@link Element } * */ public Element getRelatedElement() { return relatedElement; } /** * Sets the value of the relatedElement property. * * @param value * allowed object is * {@link Element } * */ public void setRelatedElement(Element value) { this.relatedElement = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy