// // 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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for RoleEvent complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RoleEvent"> * <complexContent> * <extension base="{http://www.savara.org/scenario}Event"> * <attribute name="role" type="{http://www.w3.org/2001/XMLSchema}IDREF" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RoleEvent") @XmlSeeAlso({ MessageEvent.class }) public abstract class RoleEvent extends Event { @XmlAttribute @XmlIDREF @XmlSchemaType(name = "IDREF") protected Object role; /** * Gets the value of the role property. * * @return * possible object is * {@link Object } * */ public Object getRole() { return role; } /** * Sets the value of the role property. * * @param value * allowed object is * {@link Object } * */ public void setRole(Object value) { this.role = value; } }