From 825269616c59f6abfc854f9741cb369db8f7f972 Mon Sep 17 00:00:00 2001 From: rbrooks Date: Fri, 15 Oct 2010 15:45:05 -0700 Subject: refactor: Convert all line terminators to Unix style --- .../osee/coverage/msgs/CoverageChange1.java | 238 +++++++++---------- .../osee/coverage/msgs/CoveragePackageEvent1.java | 256 ++++++++++----------- .../eclipse/osee/coverage/msgs/ObjectFactory.java | 136 +++++------ 3 files changed, 315 insertions(+), 315 deletions(-) (limited to 'plugins/org.eclipse.osee.coverage/src-gen/org') diff --git a/plugins/org.eclipse.osee.coverage/src-gen/org/eclipse/osee/coverage/msgs/CoverageChange1.java b/plugins/org.eclipse.osee.coverage/src-gen/org/eclipse/osee/coverage/msgs/CoverageChange1.java index 7fa6a411d67..5abb6133075 100644 --- a/plugins/org.eclipse.osee.coverage/src-gen/org/eclipse/osee/coverage/msgs/CoverageChange1.java +++ b/plugins/org.eclipse.osee.coverage/src-gen/org/eclipse/osee/coverage/msgs/CoverageChange1.java @@ -1,119 +1,119 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2010.09.20 at 02:51:29 PM MST -// - - -package org.eclipse.osee.coverage.msgs; - -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CoverageChange1 complex type. - * - *

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

- * <complexType name="CoverageChange1">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="guid" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="modTypeGuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CoverageChange1", propOrder = { - "name", - "guid", - "modTypeGuid" -}) -public class CoverageChange1 { - - @XmlElement(required = true) - protected String name; - @XmlElement(required = true) - protected String guid; - @XmlElement(required = true) - protected String modTypeGuid; - - /** - * Gets the value of the name property. - * - * possible object is - * {@link String } - * - */ - public String getName() { - return name; - } - - /** - * Sets the value of the name property. - * - * allowed object is - * {@link String } - * - */ - public void setName(String value) { - this.name = value; - } - - /** - * Gets the value of the guid property. - * - * possible object is - * {@link String } - * - */ - public String getGuid() { - return guid; - } - - /** - * Sets the value of the guid property. - * - * allowed object is - * {@link String } - * - */ - public void setGuid(String value) { - this.guid = value; - } - - /** - * Gets the value of the modTypeGuid property. - * - * possible object is - * {@link String } - * - */ - public String getModTypeGuid() { - return modTypeGuid; - } - - /** - * Sets the value of the modTypeGuid property. - * - * allowed object is - * {@link String } - * - */ - public void setModTypeGuid(String value) { - this.modTypeGuid = value; - } - -} +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2010.09.20 at 02:51:29 PM MST +// + + +package org.eclipse.osee.coverage.msgs; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CoverageChange1 complex type. + * + *

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

+ * <complexType name="CoverageChange1">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="guid" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *         <element name="modTypeGuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CoverageChange1", propOrder = { + "name", + "guid", + "modTypeGuid" +}) +public class CoverageChange1 { + + @XmlElement(required = true) + protected String name; + @XmlElement(required = true) + protected String guid; + @XmlElement(required = true) + protected String modTypeGuid; + + /** + * Gets the value of the name property. + * + * possible object is + * {@link String } + * + */ + public String getName() { + return name; + } + + /** + * Sets the value of the name property. + * + * allowed object is + * {@link String } + * + */ + public void setName(String value) { + this.name = value; + } + + /** + * Gets the value of the guid property. + * + * possible object is + * {@link String } + * + */ + public String getGuid() { + return guid; + } + + /** + * Sets the value of the guid property. + * + * allowed object is + * {@link String } + * + */ + public void setGuid(String value) { + this.guid = value; + } + + /** + * Gets the value of the modTypeGuid property. + * + * possible object is + * {@link String } + * + */ + public String getModTypeGuid() { + return modTypeGuid; + } + + /** + * Sets the value of the modTypeGuid property. + * + * allowed object is + * {@link String } + * + */ + public void setModTypeGuid(String value) { + this.modTypeGuid = value; + } + +} diff --git a/plugins/org.eclipse.osee.coverage/src-gen/org/eclipse/osee/coverage/msgs/CoveragePackageEvent1.java b/plugins/org.eclipse.osee.coverage/src-gen/org/eclipse/osee/coverage/msgs/CoveragePackageEvent1.java index d9e130b9e99..c847b941659 100644 --- a/plugins/org.eclipse.osee.coverage/src-gen/org/eclipse/osee/coverage/msgs/CoveragePackageEvent1.java +++ b/plugins/org.eclipse.osee.coverage/src-gen/org/eclipse/osee/coverage/msgs/CoveragePackageEvent1.java @@ -1,128 +1,128 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2010.09.20 at 02:51:29 PM MST -// - - -package org.eclipse.osee.coverage.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; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for CoveragePackageEvent1 complex type. - * - *

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

- * <complexType name="CoveragePackageEvent1">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="package" type="{}CoverageChange1"/>
- *         <element name="coverages" type="{}CoverageChange1" maxOccurs="unbounded"/>
- *         <element name="sessionId" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CoveragePackageEvent1", propOrder = { - "_package", - "coverages", - "sessionId" -}) -public class CoveragePackageEvent1 { - - @XmlElement(name = "package", required = true) - protected CoverageChange1 _package; - @XmlElement(required = true) - protected List coverages; - @XmlElement(required = true) - protected String sessionId; - - /** - * Gets the value of the package property. - * - * possible object is - * {@link CoverageChange1 } - * - */ - public CoverageChange1 getPackage() { - return _package; - } - - /** - * Sets the value of the package property. - * - * allowed object is - * {@link CoverageChange1 } - * - */ - public void setPackage(CoverageChange1 value) { - this._package = value; - } - - /** - * Gets the value of the coverages property. - * - *

- * 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 set method for the coverages property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCoverages().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CoverageChange1 } - * - * - */ - public List getCoverages() { - if (coverages == null) { - coverages = new ArrayList(); - } - return this.coverages; - } - - /** - * Gets the value of the sessionId property. - * - * possible object is - * {@link String } - * - */ - public String getSessionId() { - return sessionId; - } - - /** - * Sets the value of the sessionId property. - * - * allowed object is - * {@link String } - * - */ - public void setSessionId(String value) { - this.sessionId = value; - } - -} +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2010.09.20 at 02:51:29 PM MST +// + + +package org.eclipse.osee.coverage.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; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java class for CoveragePackageEvent1 complex type. + * + *

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

+ * <complexType name="CoveragePackageEvent1">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="package" type="{}CoverageChange1"/>
+ *         <element name="coverages" type="{}CoverageChange1" maxOccurs="unbounded"/>
+ *         <element name="sessionId" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "CoveragePackageEvent1", propOrder = { + "_package", + "coverages", + "sessionId" +}) +public class CoveragePackageEvent1 { + + @XmlElement(name = "package", required = true) + protected CoverageChange1 _package; + @XmlElement(required = true) + protected List coverages; + @XmlElement(required = true) + protected String sessionId; + + /** + * Gets the value of the package property. + * + * possible object is + * {@link CoverageChange1 } + * + */ + public CoverageChange1 getPackage() { + return _package; + } + + /** + * Sets the value of the package property. + * + * allowed object is + * {@link CoverageChange1 } + * + */ + public void setPackage(CoverageChange1 value) { + this._package = value; + } + + /** + * Gets the value of the coverages property. + * + *

+ * 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 set method for the coverages property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getCoverages().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link CoverageChange1 } + * + * + */ + public List getCoverages() { + if (coverages == null) { + coverages = new ArrayList(); + } + return this.coverages; + } + + /** + * Gets the value of the sessionId property. + * + * possible object is + * {@link String } + * + */ + public String getSessionId() { + return sessionId; + } + + /** + * Sets the value of the sessionId property. + * + * allowed object is + * {@link String } + * + */ + public void setSessionId(String value) { + this.sessionId = value; + } + +} diff --git a/plugins/org.eclipse.osee.coverage/src-gen/org/eclipse/osee/coverage/msgs/ObjectFactory.java b/plugins/org.eclipse.osee.coverage/src-gen/org/eclipse/osee/coverage/msgs/ObjectFactory.java index 755dc320e9c..814a1f43336 100644 --- a/plugins/org.eclipse.osee.coverage/src-gen/org/eclipse/osee/coverage/msgs/ObjectFactory.java +++ b/plugins/org.eclipse.osee.coverage/src-gen/org/eclipse/osee/coverage/msgs/ObjectFactory.java @@ -1,68 +1,68 @@ -// -// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 -// See http://java.sun.com/xml/jaxb -// Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2010.09.20 at 02:51:29 PM MST -// - - -package org.eclipse.osee.coverage.msgs; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlElementDecl; -import javax.xml.bind.annotation.XmlRegistry; -import javax.xml.namespace.QName; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the org.eclipse.osee.coverage.msgs package. - *

An ObjectFactory allows you to programatically - * construct new instances of the Java representation - * for XML content. The Java representation of XML - * content can consist of schema derived interfaces - * and classes representing the binding of schema - * type definitions, element declarations and model - * groups. Factory methods for each of these are - * provided in this class. - * - */ -@XmlRegistry -public class ObjectFactory { - - private final static QName _CoveragePackageEvent1_QNAME = new QName("", "CoveragePackageEvent1"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.eclipse.osee.coverage.msgs - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link CoveragePackageEvent1 } - * - */ - public CoveragePackageEvent1 createCoveragePackageEvent1() { - return new CoveragePackageEvent1(); - } - - /** - * Create an instance of {@link CoverageChange1 } - * - */ - public CoverageChange1 createCoverageChange1() { - return new CoverageChange1(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link CoveragePackageEvent1 }{@code >}} - * - */ - @XmlElementDecl(namespace = "", name = "CoveragePackageEvent1") - public JAXBElement createCoveragePackageEvent1(CoveragePackageEvent1 value) { - return new JAXBElement(_CoveragePackageEvent1_QNAME, CoveragePackageEvent1 .class, null, value); - } - -} +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2010.09.20 at 02:51:29 PM MST +// + + +package org.eclipse.osee.coverage.msgs; + +import javax.xml.bind.JAXBElement; +import javax.xml.bind.annotation.XmlElementDecl; +import javax.xml.bind.annotation.XmlRegistry; +import javax.xml.namespace.QName; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the org.eclipse.osee.coverage.msgs package. + *

An ObjectFactory allows you to programatically + * construct new instances of the Java representation + * for XML content. The Java representation of XML + * content can consist of schema derived interfaces + * and classes representing the binding of schema + * type definitions, element declarations and model + * groups. Factory methods for each of these are + * provided in this class. + * + */ +@XmlRegistry +public class ObjectFactory { + + private final static QName _CoveragePackageEvent1_QNAME = new QName("", "CoveragePackageEvent1"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.eclipse.osee.coverage.msgs + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link CoveragePackageEvent1 } + * + */ + public CoveragePackageEvent1 createCoveragePackageEvent1() { + return new CoveragePackageEvent1(); + } + + /** + * Create an instance of {@link CoverageChange1 } + * + */ + public CoverageChange1 createCoverageChange1() { + return new CoverageChange1(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link CoveragePackageEvent1 }{@code >}} + * + */ + @XmlElementDecl(namespace = "", name = "CoveragePackageEvent1") + public JAXBElement createCoveragePackageEvent1(CoveragePackageEvent1 value) { + return new JAXBElement(_CoveragePackageEvent1_QNAME, CoveragePackageEvent1 .class, null, value); + } + +} -- cgit v1.2.3