// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.9-04/09/2009 09:05 AM(mockbuild)-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.07.14 at 01:04:49 PM BST // package org.savara.scenario.model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Link complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Link"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="source" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> * <attribute name="target" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Link") public class Link { @XmlAttribute @XmlIDREF @XmlSchemaType(name = "IDREF") protected Object source; @XmlAttribute @XmlIDREF @XmlSchemaType(name = "IDREF") protected Object target; /** * Gets the value of the source property. * * @return * possible object is * {@link Object } * */ public Object getSource() { return source; } /** * Sets the value of the source property. * * @param value * allowed object is * {@link Object } * */ public void setSource(Object value) { this.source = value; } /** * Gets the value of the target property. * * @return * possible object is * {@link Object } * */ public Object getTarget() { return target; } /** * Sets the value of the target property. * * @param value * allowed object is * {@link Object } * */ public void setTarget(Object value) { this.target = value; } }