Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.messaging.event.res/src-gen/org/eclipse/osee/framework/messaging/event/res/msgs/RemoteBasicGuidArtifact1.java')
-rw-r--r--plugins/org.eclipse.osee.framework.messaging.event.res/src-gen/org/eclipse/osee/framework/messaging/event/res/msgs/RemoteBasicGuidArtifact1.java95
1 files changed, 93 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.messaging.event.res/src-gen/org/eclipse/osee/framework/messaging/event/res/msgs/RemoteBasicGuidArtifact1.java b/plugins/org.eclipse.osee.framework.messaging.event.res/src-gen/org/eclipse/osee/framework/messaging/event/res/msgs/RemoteBasicGuidArtifact1.java
index 5d75bdb03b2..bb1d46de522 100644
--- a/plugins/org.eclipse.osee.framework.messaging.event.res/src-gen/org/eclipse/osee/framework/messaging/event/res/msgs/RemoteBasicGuidArtifact1.java
+++ b/plugins/org.eclipse.osee.framework.messaging.event.res/src-gen/org/eclipse/osee/framework/messaging/event/res/msgs/RemoteBasicGuidArtifact1.java
@@ -2,12 +2,14 @@
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6
// 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: 2010.04.13 at 01:19:00 PM MST
+// Generated on: 2010.05.13 at 02:00:51 PM MST
//
package org.eclipse.osee.framework.messaging.event.res.msgs;
+import java.util.ArrayList;
+import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
@@ -25,9 +27,12 @@ import org.eclipse.osee.framework.messaging.event.res.RemoteEvent;
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
+ * &lt;element name="modTypeGuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="branchGuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="artTypeGuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="artGuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * &lt;element name="attributes" type="{}RemoteAttributeChange1" maxOccurs="unbounded"/>
+ * &lt;element name="toArtTypeGuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
@@ -38,20 +43,53 @@ import org.eclipse.osee.framework.messaging.event.res.RemoteEvent;
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RemoteBasicGuidArtifact1", propOrder = {
+ "modTypeGuid",
"branchGuid",
"artTypeGuid",
- "artGuid"
+ "artGuid",
+ "attributes",
+ "toArtTypeGuid"
})
public class RemoteBasicGuidArtifact1
extends RemoteEvent
{
@XmlElement(required = true)
+ protected String modTypeGuid;
+ @XmlElement(required = true)
protected String branchGuid;
@XmlElement(required = true)
protected String artTypeGuid;
@XmlElement(required = true)
protected String artGuid;
+ @XmlElement(required = true)
+ protected List<RemoteAttributeChange1> attributes;
+ @XmlElement(required = true)
+ protected String toArtTypeGuid;
+
+ /**
+ * Gets the value of the modTypeGuid property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getModTypeGuid() {
+ return modTypeGuid;
+ }
+
+ /**
+ * Sets the value of the modTypeGuid property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setModTypeGuid(String value) {
+ this.modTypeGuid = value;
+ }
/**
* Gets the value of the branchGuid property.
@@ -125,4 +163,57 @@ public class RemoteBasicGuidArtifact1
this.artGuid = value;
}
+ /**
+ * Gets the value of the attributes property.
+ *
+ * <p>
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a <CODE>set</CODE> method for the attributes property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getAttributes().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link RemoteAttributeChange1 }
+ *
+ *
+ */
+ public List<RemoteAttributeChange1> getAttributes() {
+ if (attributes == null) {
+ attributes = new ArrayList<RemoteAttributeChange1>();
+ }
+ return this.attributes;
+ }
+
+ /**
+ * Gets the value of the toArtTypeGuid property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToArtTypeGuid() {
+ return toArtTypeGuid;
+ }
+
+ /**
+ * Sets the value of the toArtTypeGuid property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToArtTypeGuid(String value) {
+ this.toArtTypeGuid = value;
+ }
+
}

Back to the top