- From: Florent Batard via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 17 Jun 2008 13:41:13 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist
In directory hutz:/tmp/cvs-serv11946/org/w3c/unicorn/generated/tasklist
Modified Files:
Parameter.java package-info.java TUi.java ObjectFactory.java
TInputMethod.java Observation.java Task.java Subtask.java
Parameters.java Handle.java Mapped.java Value.java
Tasklist.java Subtasks.java TParamType.java TPriority.java
Log Message:
Updating the javadoc for all the project
Index: TUi.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/TUi.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- TUi.java 31 Aug 2006 09:09:24 -0000 1.1.1.1
+++ TUi.java 17 Jun 2008 13:41:10 -0000 1.2
@@ -1,59 +1,61 @@
//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2006.06.29 at 06:09:33 PM CEST
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB)
+// Reference Implementation, v2.0-b52-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: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
-
/**
- * <p>Java class for tUi.
+ * <p>
+ * Java class for tUi.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
* <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
+ * <p>
+ *
* <pre>
- * <simpleType name="tUi">
- * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * <enumeration value="none"/>
- * <enumeration value="simple"/>
- * <enumeration value="advanced"/>
- * </restriction>
- * </simpleType>
+ * <simpleType name="tUi">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="none"/>
+ * <enumeration value="simple"/>
+ * <enumeration value="advanced"/>
+ * </restriction>
+ * </simpleType>
* </pre>
*
*/
@XmlEnum
public enum TUi {
- @XmlEnumValue("advanced")
- ADVANCED("advanced"),
- @XmlEnumValue("none")
- NONE("none"),
- @XmlEnumValue("simple")
- SIMPLE("simple");
- private final String value;
+ @XmlEnumValue("advanced")
+ ADVANCED("advanced"), @XmlEnumValue("none")
+ NONE("none"), @XmlEnumValue("simple")
+ SIMPLE("simple");
+ private final String value;
- TUi(String v) {
- value = v;
- }
+ TUi(String v) {
+ value = v;
+ }
- public String value() {
- return value;
- }
+ public String value() {
+ return value;
+ }
- public static TUi fromValue(String v) {
- for (TUi c: TUi.values()) {
- if (c.value.equals(v)) {
- return c;
- }
- }
- throw new IllegalArgumentException(v.toString());
- }
+ public static TUi fromValue(String v) {
+ for (TUi c : TUi.values()) {
+ if (c.value.equals(v)) {
+ return c;
+ }
+ }
+ throw new IllegalArgumentException(v.toString());
+ }
}
Index: Observation.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/Observation.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Observation.java 31 Aug 2006 09:09:23 -0000 1.1.1.1
+++ Observation.java 17 Jun 2008 13:41:10 -0000 1.2
@@ -5,7 +5,6 @@
// Generated on: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import java.util.ArrayList;
@@ -20,93 +19,91 @@
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
-
/**
- * <p>Java class for observation element declaration.
+ * <p>
+ * Java class for observation element declaration.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
*
* <pre>
- * <element name="observation">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element ref="{http://www.w3.org/unicorn/tasklist}handle" maxOccurs="unbounded"/>
- * </sequence>
- * <attribute name="ref" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
+ * <element name="observation">
+ * <complexType>
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element ref="{http://www.w3.org/unicorn/tasklist}handle" maxOccurs="unbounded"/>
+ * </sequence>
+ * <attribute name="ref" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </element>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "handle"
-})
+@XmlType(name = "", propOrder = { "handle" })
@XmlRootElement(name = "observation")
public class Observation {
- @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist", required = true)
- protected List<Handle> handle;
- @XmlAttribute(required = true)
- @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
- protected String ref;
+ @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist", required = true)
+ protected List<Handle> handle;
- /**
- * Gets the value of the handle 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 handle property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getHandle().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Handle }
- *
- *
- */
- public List<Handle> getHandle() {
- if (handle == null) {
- handle = new ArrayList<Handle>();
- }
- return this.handle;
- }
+ @XmlAttribute(required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ protected String ref;
- /**
- * Gets the value of the ref property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getRef() {
- return ref;
- }
+ /**
+ * Gets the value of the handle 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 handle property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ *
+ * <pre>
+ * getHandle().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list {@link Handle }
+ *
+ *
+ */
+ public List<Handle> getHandle() {
+ if (handle == null) {
+ handle = new ArrayList<Handle>();
+ }
+ return this.handle;
+ }
- /**
- * Sets the value of the ref property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setRef(String value) {
- this.ref = value;
- }
+ /**
+ * Gets the value of the ref property.
+ *
+ * @return possible object is {@link String }
+ *
+ */
+ public String getRef() {
+ return ref;
+ }
+
+ /**
+ * Sets the value of the ref property.
+ *
+ * @param value
+ * allowed object is {@link String }
+ *
+ */
+ public void setRef(String value) {
+ this.ref = value;
+ }
}
Index: TParamType.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/TParamType.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- TParamType.java 31 Aug 2006 09:09:24 -0000 1.1.1.1
+++ TParamType.java 17 Jun 2008 13:41:11 -0000 1.2
@@ -1,68 +1,67 @@
//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2006.06.29 at 06:09:33 PM CEST
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB)
+// Reference Implementation, v2.0-b52-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: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
-
/**
- * <p>Java class for tParamType.
+ * <p>
+ * Java class for tParamType.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
* <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
+ * <p>
+ *
* <pre>
- * <simpleType name="tParamType">
- * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * <enumeration value="checkbox"/>
- * <enumeration value="checkboxlist"/>
- * <enumeration value="dropdown"/>
- * <enumeration value="textarea"/>
- * <enumeration value="textfield"/>
- * <enumeration value="radio"/>
- * </restriction>
- * </simpleType>
+ * <simpleType name="tParamType">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="checkbox"/>
+ * <enumeration value="checkboxlist"/>
+ * <enumeration value="dropdown"/>
+ * <enumeration value="textarea"/>
+ * <enumeration value="textfield"/>
+ * <enumeration value="radio"/>
+ * </restriction>
+ * </simpleType>
* </pre>
*
*/
@XmlEnum
public enum TParamType {
- @XmlEnumValue("checkbox")
- CHECKBOX("checkbox"),
- @XmlEnumValue("checkboxlist")
- CHECKBOXLIST("checkboxlist"),
- @XmlEnumValue("dropdown")
- DROPDOWN("dropdown"),
- @XmlEnumValue("radio")
- RADIO("radio"),
- @XmlEnumValue("textarea")
- TEXTAREA("textarea"),
- @XmlEnumValue("textfield")
- TEXTFIELD("textfield");
- private final String value;
+ @XmlEnumValue("checkbox")
+ CHECKBOX("checkbox"), @XmlEnumValue("checkboxlist")
+ CHECKBOXLIST("checkboxlist"), @XmlEnumValue("dropdown")
+ DROPDOWN("dropdown"), @XmlEnumValue("radio")
+ RADIO("radio"), @XmlEnumValue("textarea")
+ TEXTAREA("textarea"), @XmlEnumValue("textfield")
+ TEXTFIELD("textfield");
+ private final String value;
- TParamType(String v) {
- value = v;
- }
+ TParamType(String v) {
+ value = v;
+ }
- public String value() {
- return value;
- }
+ public String value() {
+ return value;
+ }
- public static TParamType fromValue(String v) {
- for (TParamType c: TParamType.values()) {
- if (c.value.equals(v)) {
- return c;
- }
- }
- throw new IllegalArgumentException(v.toString());
- }
+ public static TParamType fromValue(String v) {
+ for (TParamType c : TParamType.values()) {
+ if (c.value.equals(v)) {
+ return c;
+ }
+ }
+ throw new IllegalArgumentException(v.toString());
+ }
}
Index: package-info.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/package-info.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- package-info.java 31 Aug 2006 09:09:24 -0000 1.1.1.1
+++ package-info.java 17 Jun 2008 13:41:10 -0000 1.2
@@ -1,9 +1,12 @@
//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2006.06.29 at 06:09:33 PM CEST
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB)
+// Reference Implementation, v2.0-b52-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: 2006.06.29 at 06:09:33 PM CEST
//
@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.w3.org/unicorn/tasklist")
package org.w3c.unicorn.generated.tasklist;
+
Index: Parameters.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/Parameters.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Parameters.java 31 Aug 2006 09:09:23 -0000 1.1.1.1
+++ Parameters.java 17 Jun 2008 13:41:11 -0000 1.2
@@ -5,7 +5,6 @@
// Generated on: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import java.util.ArrayList;
@@ -17,65 +16,66 @@
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
-
/**
- * <p>Java class for parameters element declaration.
+ * <p>
+ * Java class for parameters element declaration.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
*
* <pre>
- * <element name="parameters">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence maxOccurs="unbounded">
- * <element ref="{http://www.w3.org/unicorn/tasklist}parameter"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
+ * <element name="parameters">
+ * <complexType>
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence maxOccurs="unbounded">
+ * <element ref="{http://www.w3.org/unicorn/tasklist}parameter"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </element>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "parameter"
-})
+@XmlType(name = "", propOrder = { "parameter" })
@XmlRootElement(name = "parameters")
public class Parameters {
- @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist", required = true)
- protected List<Parameter> parameter;
+ @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist", required = true)
+ protected List<Parameter> parameter;
- /**
- * Gets the value of the parameter 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 parameter property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getParameter().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Parameter }
- *
- *
- */
- public List<Parameter> getParameter() {
- if (parameter == null) {
- parameter = new ArrayList<Parameter>();
- }
- return this.parameter;
- }
+ /**
+ * Gets the value of the parameter 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 parameter property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ *
+ * <pre>
+ * getParameter().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link Parameter }
+ *
+ *
+ */
+ public List<Parameter> getParameter() {
+ if (parameter == null) {
+ parameter = new ArrayList<Parameter>();
+ }
+ return this.parameter;
+ }
}
Index: Subtasks.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/Subtasks.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Subtasks.java 31 Aug 2006 09:09:23 -0000 1.1.1.1
+++ Subtasks.java 17 Jun 2008 13:41:11 -0000 1.2
@@ -5,7 +5,6 @@
// Generated on: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import java.util.ArrayList;
@@ -18,70 +17,69 @@
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
-
/**
- * <p>Java class for subtasks element declaration.
+ * <p>
+ * Java class for subtasks element declaration.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
*
* <pre>
- * <element name="subtasks">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <choice maxOccurs="unbounded">
- * <element ref="{http://www.w3.org/unicorn/tasklist}observation"/>
- * <element ref="{http://www.w3.org/unicorn/tasklist}subtask"/>
- * </choice>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
+ * <element name="subtasks">
+ * <complexType>
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <choice maxOccurs="unbounded">
+ * <element ref="{http://www.w3.org/unicorn/tasklist}observation"/>
+ * <element ref="{http://www.w3.org/unicorn/tasklist}subtask"/>
+ * </choice>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </element>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "observationOrSubtask"
-})
+@XmlType(name = "", propOrder = { "observationOrSubtask" })
@XmlRootElement(name = "subtasks")
public class Subtasks {
- @XmlElements({
- @XmlElement(name = "subtask", namespace = "http://www.w3.org/unicorn/tasklist", required = true, type = Subtask.class),
- @XmlElement(name = "observation", namespace = "http://www.w3.org/unicorn/tasklist", required = true, type = Observation.class)
- })
- protected List<Object> observationOrSubtask;
+ @XmlElements( {
+ @XmlElement(name = "subtask", namespace = "http://www.w3.org/unicorn/tasklist", required = true, type = Subtask.class),
+ @XmlElement(name = "observation", namespace = "http://www.w3.org/unicorn/tasklist", required = true, type = Observation.class) })
+ protected List<Object> observationOrSubtask;
- /**
- * Gets the value of the observationOrSubtask 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 observationOrSubtask property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getObservationOrSubtask().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Subtask }
- * {@link Observation }
- *
- *
- */
- public List<Object> getObservationOrSubtask() {
- if (observationOrSubtask == null) {
- observationOrSubtask = new ArrayList<Object>();
- }
- return this.observationOrSubtask;
- }
+ /**
+ * Gets the value of the observationOrSubtask 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 observationOrSubtask property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ *
+ * <pre>
+ * getObservationOrSubtask().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list {@link Subtask }
+ * {@link Observation }
+ *
+ *
+ */
+ public List<Object> getObservationOrSubtask() {
+ if (observationOrSubtask == null) {
+ observationOrSubtask = new ArrayList<Object>();
+ }
+ return this.observationOrSubtask;
+ }
}
Index: Tasklist.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/Tasklist.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Tasklist.java 31 Aug 2006 09:09:24 -0000 1.1.1.1
+++ Tasklist.java 17 Jun 2008 13:41:11 -0000 1.2
@@ -5,7 +5,6 @@
// Generated on: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import java.util.ArrayList;
@@ -17,65 +16,65 @@
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
-
/**
- * <p>Java class for tasklist element declaration.
+ * <p>
+ * Java class for tasklist element declaration.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
*
* <pre>
- * <element name="tasklist">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element ref="{http://www.w3.org/unicorn/tasklist}task" maxOccurs="unbounded"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
+ * <element name="tasklist">
+ * <complexType>
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element ref="{http://www.w3.org/unicorn/tasklist}task" maxOccurs="unbounded"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </element>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "task"
-})
+@XmlType(name = "", propOrder = { "task" })
@XmlRootElement(name = "tasklist")
public class Tasklist {
- @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist", required = true)
- protected List<Task> task;
+ @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist", required = true)
+ protected List<Task> task;
- /**
- * Gets the value of the task 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 task property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getTask().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Task }
- *
- *
- */
- public List<Task> getTask() {
- if (task == null) {
- task = new ArrayList<Task>();
- }
- return this.task;
- }
+ /**
+ * Gets the value of the task 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 task property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ *
+ * <pre>
+ * getTask().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list {@link Task }
+ *
+ *
+ */
+ public List<Task> getTask() {
+ if (task == null) {
+ task = new ArrayList<Task>();
+ }
+ return this.task;
+ }
}
Index: Handle.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/Handle.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Handle.java 31 Aug 2006 09:09:23 -0000 1.1.1.1
+++ Handle.java 17 Jun 2008 13:41:11 -0000 1.2
@@ -5,7 +5,6 @@
// Generated on: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import javax.xml.bind.annotation.XmlAccessType;
@@ -14,23 +13,25 @@
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
-
/**
- * <p>Java class for handle element declaration.
+ * <p>
+ * Java class for handle element declaration.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
*
* <pre>
- * <element name="handle">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <attribute name="mimetype" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- * <attribute name="priority" type="{http://www.w3.org/unicorn/tasklist}tPriority" default="medium" />
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
+ * <element name="handle">
+ * <complexType>
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <attribute name="mimetype" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ * <attribute name="priority" type="{http://www.w3.org/unicorn/tasklist}tPriority" default="medium" />
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </element>
* </pre>
*
*
@@ -40,61 +41,56 @@
@XmlRootElement(name = "handle")
public class Handle {
- @XmlAttribute(required = true)
- protected String mimetype;
- @XmlAttribute
- protected TPriority priority;
+ @XmlAttribute(required = true)
+ protected String mimetype;
- /**
- * Gets the value of the mimetype property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getMimetype() {
- return mimetype;
- }
+ @XmlAttribute
+ protected TPriority priority;
- /**
- * Sets the value of the mimetype property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setMimetype(String value) {
- this.mimetype = value;
- }
+ /**
+ * Gets the value of the mimetype property.
+ *
+ * @return possible object is {@link String }
+ *
+ */
+ public String getMimetype() {
+ return mimetype;
+ }
- /**
- * Gets the value of the priority property.
- *
- * @return
- * possible object is
- * {@link TPriority }
- *
- */
- public TPriority getPriority() {
- if (priority == null) {
- return TPriority.MEDIUM;
- } else {
- return priority;
- }
- }
+ /**
+ * Sets the value of the mimetype property.
+ *
+ * @param value
+ * allowed object is {@link String }
+ *
+ */
+ public void setMimetype(String value) {
+ this.mimetype = value;
+ }
- /**
- * Sets the value of the priority property.
- *
- * @param value
- * allowed object is
- * {@link TPriority }
- *
- */
- public void setPriority(TPriority value) {
- this.priority = value;
- }
+ /**
+ * Gets the value of the priority property.
+ *
+ * @return possible object is {@link TPriority }
+ *
+ */
+ public TPriority getPriority() {
+ if (priority == null) {
+ return TPriority.MEDIUM;
+ } else {
+ return priority;
+ }
+ }
+
+ /**
+ * Sets the value of the priority property.
+ *
+ * @param value
+ * allowed object is {@link TPriority }
+ *
+ */
+ public void setPriority(TPriority value) {
+ this.priority = value;
+ }
}
Index: Value.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/Value.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Value.java 31 Aug 2006 09:09:24 -0000 1.1.1.1
+++ Value.java 17 Jun 2008 13:41:11 -0000 1.2
@@ -5,7 +5,6 @@
// Generated on: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import java.util.ArrayList;
@@ -20,93 +19,91 @@
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
-
/**
- * <p>Java class for value element declaration.
+ * <p>
+ * Java class for value element declaration.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
*
* <pre>
- * <element name="value">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element ref="{http://www.w3.org/unicorn/tasklist}mapped" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
+ * <element name="value">
+ * <complexType>
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element ref="{http://www.w3.org/unicorn/tasklist}mapped" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </element>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "mapped"
-})
+@XmlType(name = "", propOrder = { "mapped" })
@XmlRootElement(name = "value")
public class Value {
- @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist", required = true)
- protected List<Mapped> mapped;
- @XmlAttribute
- @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
- protected String name;
+ @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist", required = true)
+ protected List<Mapped> mapped;
- /**
- * Gets the value of the mapped 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 mapped property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getMapped().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Mapped }
- *
- *
- */
- public List<Mapped> getMapped() {
- if (mapped == null) {
- mapped = new ArrayList<Mapped>();
- }
- return this.mapped;
- }
+ @XmlAttribute
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ protected String name;
- /**
- * Gets the value of the name property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getName() {
- return name;
- }
+ /**
+ * Gets the value of the mapped 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 mapped property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ *
+ * <pre>
+ * getMapped().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list {@link Mapped }
+ *
+ *
+ */
+ public List<Mapped> getMapped() {
+ if (mapped == null) {
+ mapped = new ArrayList<Mapped>();
+ }
+ return this.mapped;
+ }
- /**
- * Sets the value of the name property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setName(String value) {
- this.name = value;
- }
+ /**
+ * Gets the value of the name property.
+ *
+ * @return possible object is {@link String }
+ *
+ */
+ public String getName() {
+ return name;
+ }
+
+ /**
+ * Sets the value of the name property.
+ *
+ * @param value
+ * allowed object is {@link String }
+ *
+ */
+ public void setName(String value) {
+ this.name = value;
+ }
}
Index: Mapped.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/Mapped.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Mapped.java 31 Aug 2006 09:09:23 -0000 1.1.1.1
+++ Mapped.java 17 Jun 2008 13:41:11 -0000 1.2
@@ -5,7 +5,6 @@
// Generated on: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import java.util.ArrayList;
@@ -19,29 +18,31 @@
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
-
/**
- * <p>Java class for mapped element declaration.
+ * <p>
+ * Java class for mapped element declaration.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
*
* <pre>
- * <element name="mapped">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <attribute name="inputmethod" default="uri direct file">
- * <simpleType>
- * <list itemType="{http://www.w3.org/unicorn/tasklist}tInputMethod" />
- * </simpleType>
- * </attribute>
- * <attribute name="observer" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
- * <attribute name="param" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
- * <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" />
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
+ * <element name="mapped">
+ * <complexType>
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <attribute name="inputmethod" default="uri direct file">
+ * <simpleType>
+ * <list itemType="{http://www.w3.org/unicorn/tasklist}tInputMethod" />
+ * </simpleType>
+ * </attribute>
+ * <attribute name="observer" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
+ * <attribute name="param" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
+ * <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" />
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </element>
* </pre>
*
*
@@ -51,116 +52,111 @@
@XmlRootElement(name = "mapped")
public class Mapped {
- @XmlAttribute
- protected List<TInputMethod> inputmethod;
- @XmlAttribute(required = true)
- @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
- protected String observer;
- @XmlAttribute(required = true)
- @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
- protected String param;
- @XmlAttribute
- protected String value;
+ @XmlAttribute
+ protected List<TInputMethod> inputmethod;
- /**
- * Gets the value of the inputmethod 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 inputmethod property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getInputmethod().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link TInputMethod }
- *
- *
- */
- public List<TInputMethod> getInputmethod() {
- if (inputmethod == null) {
- inputmethod = new ArrayList<TInputMethod>();
- }
- return this.inputmethod;
- }
+ @XmlAttribute(required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ protected String observer;
- /**
- * Gets the value of the observer property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getObserver() {
- return observer;
- }
+ @XmlAttribute(required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ protected String param;
- /**
- * Sets the value of the observer property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setObserver(String value) {
- this.observer = value;
- }
+ @XmlAttribute
+ protected String value;
- /**
- * Gets the value of the param property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getParam() {
- return param;
- }
+ /**
+ * Gets the value of the inputmethod 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 inputmethod property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ *
+ * <pre>
+ * getInputmethod().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link TInputMethod }
+ *
+ *
+ */
+ public List<TInputMethod> getInputmethod() {
+ if (inputmethod == null) {
+ inputmethod = new ArrayList<TInputMethod>();
+ }
+ return this.inputmethod;
+ }
- /**
- * Sets the value of the param property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setParam(String value) {
- this.param = value;
- }
+ /**
+ * Gets the value of the observer property.
+ *
+ * @return possible object is {@link String }
+ *
+ */
+ public String getObserver() {
+ return observer;
+ }
- /**
- * Gets the value of the value property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getValue() {
- return value;
- }
+ /**
+ * Sets the value of the observer property.
+ *
+ * @param value
+ * allowed object is {@link String }
+ *
+ */
+ public void setObserver(String value) {
+ this.observer = value;
+ }
- /**
- * Sets the value of the value property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setValue(String value) {
- this.value = value;
- }
+ /**
+ * Gets the value of the param property.
+ *
+ * @return possible object is {@link String }
+ *
+ */
+ public String getParam() {
+ return param;
+ }
+
+ /**
+ * Sets the value of the param property.
+ *
+ * @param value
+ * allowed object is {@link String }
+ *
+ */
+ public void setParam(String value) {
+ this.param = value;
+ }
+
+ /**
+ * Gets the value of the value property.
+ *
+ * @return possible object is {@link String }
+ *
+ */
+ public String getValue() {
+ return value;
+ }
+
+ /**
+ * Sets the value of the value property.
+ *
+ * @param value
+ * allowed object is {@link String }
+ *
+ */
+ public void setValue(String value) {
+ this.value = value;
+ }
}
Index: Parameter.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/Parameter.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Parameter.java 31 Aug 2006 09:09:23 -0000 1.1.1.1
+++ Parameter.java 17 Jun 2008 13:41:10 -0000 1.2
@@ -5,7 +5,6 @@
// Generated on: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import java.util.ArrayList;
@@ -20,202 +19,192 @@
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
-
/**
- * <p>Java class for parameter element declaration.
+ * <p>
+ * Java class for parameter element declaration.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
*
* <pre>
- * <element name="parameter">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element ref="{http://www.w3.org/unicorn/tasklist}value" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * <attGroup ref="{http://www.w3.org/unicorn/tasklist}generalInfos"/>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
+ * <element name="parameter">
+ * <complexType>
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element ref="{http://www.w3.org/unicorn/tasklist}value" maxOccurs="unbounded" minOccurs="0"/>
+ * </sequence>
+ * <attGroup ref="{http://www.w3.org/unicorn/tasklist}generalInfos"/>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </element>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "value"
-})
+@XmlType(name = "", propOrder = { "value" })
@XmlRootElement(name = "parameter")
public class Parameter {
- @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist", required = true)
- protected List<Value> value;
- @XmlAttribute(name = "default")
- protected String _default;
- @XmlAttribute(required = true)
- @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
- protected String name;
- @XmlAttribute
- @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
- protected String observer;
- @XmlAttribute(required = true)
- protected TParamType type;
- @XmlAttribute
- protected TUi ui;
+ @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist", required = true)
+ protected List<Value> value;
- /**
- * Gets the value of the value 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 value property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getValue().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link Value }
- *
- *
- */
- public List<Value> getValue() {
- if (value == null) {
- value = new ArrayList<Value>();
- }
- return this.value;
- }
+ @XmlAttribute(name = "default")
+ protected String _default;
- /**
- * Gets the value of the default property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getDefault() {
- return _default;
- }
+ @XmlAttribute(required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ protected String name;
- /**
- * Sets the value of the default property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setDefault(String value) {
- this._default = value;
- }
+ @XmlAttribute
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ protected String observer;
- /**
- * Gets the value of the name property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getName() {
- return name;
- }
+ @XmlAttribute(required = true)
+ protected TParamType type;
- /**
- * Sets the value of the name property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setName(String value) {
- this.name = value;
- }
+ @XmlAttribute
+ protected TUi ui;
- /**
- * Gets the value of the observer property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getObserver() {
- return observer;
- }
+ /**
+ * Gets the value of the value 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 value property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ *
+ * <pre>
+ * getValue().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list {@link Value }
+ *
+ *
+ */
+ public List<Value> getValue() {
+ if (value == null) {
+ value = new ArrayList<Value>();
+ }
+ return this.value;
+ }
- /**
- * Sets the value of the observer property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setObserver(String value) {
- this.observer = value;
- }
+ /**
+ * Gets the value of the default property.
+ *
+ * @return possible object is {@link String }
+ *
+ */
+ public String getDefault() {
+ return _default;
+ }
- /**
- * Gets the value of the type property.
- *
- * @return
- * possible object is
- * {@link TParamType }
- *
- */
- public TParamType getType() {
- return type;
- }
+ /**
+ * Sets the value of the default property.
+ *
+ * @param value
+ * allowed object is {@link String }
+ *
+ */
+ public void setDefault(String value) {
+ this._default = value;
+ }
- /**
- * Sets the value of the type property.
- *
- * @param value
- * allowed object is
- * {@link TParamType }
- *
- */
- public void setType(TParamType value) {
- this.type = value;
- }
+ /**
+ * Gets the value of the name property.
+ *
+ * @return possible object is {@link String }
+ *
+ */
+ public String getName() {
+ return name;
+ }
- /**
- * Gets the value of the ui property.
- *
- * @return
- * possible object is
- * {@link TUi }
- *
- */
- public TUi getUi() {
- if (ui == null) {
- return TUi.ADVANCED;
- } else {
- return ui;
- }
- }
+ /**
+ * Sets the value of the name property.
+ *
+ * @param value
+ * allowed object is {@link String }
+ *
+ */
+ public void setName(String value) {
+ this.name = value;
+ }
- /**
- * Sets the value of the ui property.
- *
- * @param value
- * allowed object is
- * {@link TUi }
- *
- */
- public void setUi(TUi value) {
- this.ui = value;
- }
+ /**
+ * Gets the value of the observer property.
+ *
+ * @return possible object is {@link String }
+ *
+ */
+ public String getObserver() {
+ return observer;
+ }
+
+ /**
+ * Sets the value of the observer property.
+ *
+ * @param value
+ * allowed object is {@link String }
+ *
+ */
+ public void setObserver(String value) {
+ this.observer = value;
+ }
+
+ /**
+ * Gets the value of the type property.
+ *
+ * @return possible object is {@link TParamType }
+ *
+ */
+ public TParamType getType() {
+ return type;
+ }
+
+ /**
+ * Sets the value of the type property.
+ *
+ * @param value
+ * allowed object is {@link TParamType }
+ *
+ */
+ public void setType(TParamType value) {
+ this.type = value;
+ }
+
+ /**
+ * Gets the value of the ui property.
+ *
+ * @return possible object is {@link TUi }
+ *
+ */
+ public TUi getUi() {
+ if (ui == null) {
+ return TUi.ADVANCED;
+ } else {
+ return ui;
+ }
+ }
+
+ /**
+ * Sets the value of the ui property.
+ *
+ * @param value
+ * allowed object is {@link TUi }
+ *
+ */
+ public void setUi(TUi value) {
+ this.ui = value;
+ }
}
Index: Task.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/Task.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Task.java 31 Aug 2006 09:09:24 -0000 1.1.1.1
+++ Task.java 17 Jun 2008 13:41:10 -0000 1.2
@@ -5,7 +5,6 @@
// Generated on: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import javax.xml.bind.annotation.XmlAccessType;
@@ -15,146 +14,136 @@
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
-
/**
- * <p>Java class for task element declaration.
+ * <p>
+ * Java class for task element declaration.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
*
* <pre>
- * <element name="task">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element ref="{http://www.w3.org/unicorn/tasklist}subtasks"/>
- * <element ref="{http://www.w3.org/unicorn/tasklist}parameters" minOccurs="0"/>
- * </sequence>
- * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- * <attribute name="visible" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
+ * <element name="task">
+ * <complexType>
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element ref="{http://www.w3.org/unicorn/tasklist}subtasks"/>
+ * <element ref="{http://www.w3.org/unicorn/tasklist}parameters" minOccurs="0"/>
+ * </sequence>
+ * <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ * <attribute name="visible" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </element>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "", propOrder = {
- "subtasks",
- "parameters"
-})
+@XmlType(name = "", propOrder = { "subtasks", "parameters" })
@XmlRootElement(name = "task")
public class Task {
- @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist", required = true)
- protected Subtasks subtasks;
- @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist")
- protected Parameters parameters;
- @XmlAttribute(required = true)
- protected String id;
- @XmlAttribute
- protected Boolean visible;
+ @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist", required = true)
+ protected Subtasks subtasks;
- /**
- * Gets the value of the subtasks property.
- *
- * @return
- * possible object is
- * {@link Subtasks }
- *
- */
- public Subtasks getSubtasks() {
- return subtasks;
- }
+ @XmlElement(namespace = "http://www.w3.org/unicorn/tasklist")
+ protected Parameters parameters;
- /**
- * Sets the value of the subtasks property.
- *
- * @param value
- * allowed object is
- * {@link Subtasks }
- *
- */
- public void setSubtasks(Subtasks value) {
- this.subtasks = value;
- }
+ @XmlAttribute(required = true)
+ protected String id;
- /**
- * Gets the value of the parameters property.
- *
- * @return
- * possible object is
- * {@link Parameters }
- *
- */
- public Parameters getParameters() {
- return parameters;
- }
+ @XmlAttribute
+ protected Boolean visible;
- /**
- * Sets the value of the parameters property.
- *
- * @param value
- * allowed object is
- * {@link Parameters }
- *
- */
- public void setParameters(Parameters value) {
- this.parameters = value;
- }
+ /**
+ * Gets the value of the subtasks property.
+ *
+ * @return possible object is {@link Subtasks }
+ *
+ */
+ public Subtasks getSubtasks() {
+ return subtasks;
+ }
- /**
- * Gets the value of the id property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getId() {
- return id;
- }
+ /**
+ * Sets the value of the subtasks property.
+ *
+ * @param value
+ * allowed object is {@link Subtasks }
+ *
+ */
+ public void setSubtasks(Subtasks value) {
+ this.subtasks = value;
+ }
- /**
- * Sets the value of the id property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setId(String value) {
- this.id = value;
- }
+ /**
+ * Gets the value of the parameters property.
+ *
+ * @return possible object is {@link Parameters }
+ *
+ */
+ public Parameters getParameters() {
+ return parameters;
+ }
- /**
- * Gets the value of the visible property.
- *
- * @return
- * possible object is
- * {@link Boolean }
- *
- */
- public boolean isVisible() {
- if (visible == null) {
- return true;
- } else {
- return visible;
- }
- }
+ /**
+ * Sets the value of the parameters property.
+ *
+ * @param value
+ * allowed object is {@link Parameters }
+ *
+ */
+ public void setParameters(Parameters value) {
+ this.parameters = value;
+ }
- /**
- * Sets the value of the visible property.
- *
- * @param value
- * allowed object is
- * {@link Boolean }
- *
- */
- public void setVisible(Boolean value) {
- this.visible = value;
- }
+ /**
+ * Gets the value of the id property.
+ *
+ * @return possible object is {@link String }
+ *
+ */
+ public String getId() {
+ return id;
+ }
+
+ /**
+ * Sets the value of the id property.
+ *
+ * @param value
+ * allowed object is {@link String }
+ *
+ */
+ public void setId(String value) {
+ this.id = value;
+ }
+
+ /**
+ * Gets the value of the visible property.
+ *
+ * @return possible object is {@link Boolean }
+ *
+ */
+ public boolean isVisible() {
+ if (visible == null) {
+ return true;
+ } else {
+ return visible;
+ }
+ }
+
+ /**
+ * Sets the value of the visible property.
+ *
+ * @param value
+ * allowed object is {@link Boolean }
+ *
+ */
+ public void setVisible(Boolean value) {
+ this.visible = value;
+ }
}
Index: ObjectFactory.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/ObjectFactory.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- ObjectFactory.java 31 Aug 2006 09:09:23 -0000 1.1.1.1
+++ ObjectFactory.java 17 Jun 2008 13:41:10 -0000 1.2
@@ -5,115 +5,111 @@
// Generated on: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import javax.xml.bind.annotation.XmlRegistry;
-
/**
- * This object contains factory methods for each
- * Java content interface and Java element interface
- * generated in the org.w3c.unicorn.generated.tasklist package.
- * <p>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.
+ * This object contains factory methods for each Java content interface and Java
+ * element interface generated in the org.w3c.unicorn.generated.tasklist
+ * package.
+ * <p>
+ * 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 {
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of
+ * schema derived classes for package: org.w3c.unicorn.generated.tasklist
+ *
+ */
+ public ObjectFactory() {
+ }
- /**
- * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.w3c.unicorn.generated.tasklist
- *
- */
- public ObjectFactory() {
- }
-
- /**
- * Create an instance of {@link Task }
- *
- */
- public Task createTask() {
- return new Task();
- }
+ /**
+ * Create an instance of {@link Task }
+ *
+ */
+ public Task createTask() {
+ return new Task();
+ }
- /**
- * Create an instance of {@link Value }
- *
- */
- public Value createValue() {
- return new Value();
- }
+ /**
+ * Create an instance of {@link Value }
+ *
+ */
+ public Value createValue() {
+ return new Value();
+ }
- /**
- * Create an instance of {@link Mapped }
- *
- */
- public Mapped createMapped() {
- return new Mapped();
- }
+ /**
+ * Create an instance of {@link Mapped }
+ *
+ */
+ public Mapped createMapped() {
+ return new Mapped();
+ }
- /**
- * Create an instance of {@link Parameter }
- *
- */
- public Parameter createParameter() {
- return new Parameter();
- }
+ /**
+ * Create an instance of {@link Parameter }
+ *
+ */
+ public Parameter createParameter() {
+ return new Parameter();
+ }
- /**
- * Create an instance of {@link Subtasks }
- *
- */
- public Subtasks createSubtasks() {
- return new Subtasks();
- }
+ /**
+ * Create an instance of {@link Subtasks }
+ *
+ */
+ public Subtasks createSubtasks() {
+ return new Subtasks();
+ }
- /**
- * Create an instance of {@link Parameters }
- *
- */
- public Parameters createParameters() {
- return new Parameters();
- }
+ /**
+ * Create an instance of {@link Parameters }
+ *
+ */
+ public Parameters createParameters() {
+ return new Parameters();
+ }
- /**
- * Create an instance of {@link Handle }
- *
- */
- public Handle createHandle() {
- return new Handle();
- }
+ /**
+ * Create an instance of {@link Handle }
+ *
+ */
+ public Handle createHandle() {
+ return new Handle();
+ }
- /**
- * Create an instance of {@link Tasklist }
- *
- */
- public Tasklist createTasklist() {
- return new Tasklist();
- }
+ /**
+ * Create an instance of {@link Tasklist }
+ *
+ */
+ public Tasklist createTasklist() {
+ return new Tasklist();
+ }
- /**
- * Create an instance of {@link Subtask }
- *
- */
- public Subtask createSubtask() {
- return new Subtask();
- }
+ /**
+ * Create an instance of {@link Subtask }
+ *
+ */
+ public Subtask createSubtask() {
+ return new Subtask();
+ }
- /**
- * Create an instance of {@link Observation }
- *
- */
- public Observation createObservation() {
- return new Observation();
- }
+ /**
+ * Create an instance of {@link Observation }
+ *
+ */
+ public Observation createObservation() {
+ return new Observation();
+ }
}
Index: TPriority.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/TPriority.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- TPriority.java 31 Aug 2006 09:09:24 -0000 1.1.1.1
+++ TPriority.java 17 Jun 2008 13:41:11 -0000 1.2
@@ -1,59 +1,61 @@
//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2006.06.29 at 06:09:33 PM CEST
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB)
+// Reference Implementation, v2.0-b52-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: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
-
/**
- * <p>Java class for tPriority.
+ * <p>
+ * Java class for tPriority.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
* <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
+ * <p>
+ *
* <pre>
- * <simpleType name="tPriority">
- * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * <enumeration value="low"/>
- * <enumeration value="medium"/>
- * <enumeration value="high"/>
- * </restriction>
- * </simpleType>
+ * <simpleType name="tPriority">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="low"/>
+ * <enumeration value="medium"/>
+ * <enumeration value="high"/>
+ * </restriction>
+ * </simpleType>
* </pre>
*
*/
@XmlEnum
public enum TPriority {
- @XmlEnumValue("high")
- HIGH("high"),
- @XmlEnumValue("low")
- LOW("low"),
- @XmlEnumValue("medium")
- MEDIUM("medium");
- private final String value;
+ @XmlEnumValue("high")
+ HIGH("high"), @XmlEnumValue("low")
+ LOW("low"), @XmlEnumValue("medium")
+ MEDIUM("medium");
+ private final String value;
- TPriority(String v) {
- value = v;
- }
+ TPriority(String v) {
+ value = v;
+ }
- public String value() {
- return value;
- }
+ public String value() {
+ return value;
+ }
- public static TPriority fromValue(String v) {
- for (TPriority c: TPriority.values()) {
- if (c.value.equals(v)) {
- return c;
- }
- }
- throw new IllegalArgumentException(v.toString());
- }
+ public static TPriority fromValue(String v) {
+ for (TPriority c : TPriority.values()) {
+ if (c.value.equals(v)) {
+ return c;
+ }
+ }
+ throw new IllegalArgumentException(v.toString());
+ }
}
Index: TInputMethod.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/TInputMethod.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- TInputMethod.java 31 Aug 2006 09:09:23 -0000 1.1.1.1
+++ TInputMethod.java 17 Jun 2008 13:41:10 -0000 1.2
@@ -1,59 +1,61 @@
//
-// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-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: 2006.06.29 at 06:09:33 PM CEST
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB)
+// Reference Implementation, v2.0-b52-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: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
-
/**
- * <p>Java class for tInputMethod.
+ * <p>
+ * Java class for tInputMethod.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
* <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
+ * <p>
+ *
* <pre>
- * <simpleType name="tInputMethod">
- * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * <enumeration value="file"/>
- * <enumeration value="direct"/>
- * <enumeration value="uri"/>
- * </restriction>
- * </simpleType>
+ * <simpleType name="tInputMethod">
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * <enumeration value="file"/>
+ * <enumeration value="direct"/>
+ * <enumeration value="uri"/>
+ * </restriction>
+ * </simpleType>
* </pre>
*
*/
@XmlEnum
public enum TInputMethod {
- @XmlEnumValue("direct")
- DIRECT("direct"),
- @XmlEnumValue("file")
- FILE("file"),
- @XmlEnumValue("uri")
- URI("uri");
- private final String value;
+ @XmlEnumValue("direct")
+ DIRECT("direct"), @XmlEnumValue("file")
+ FILE("file"), @XmlEnumValue("uri")
+ URI("uri");
+ private final String value;
- TInputMethod(String v) {
- value = v;
- }
+ TInputMethod(String v) {
+ value = v;
+ }
- public String value() {
- return value;
- }
+ public String value() {
+ return value;
+ }
- public static TInputMethod fromValue(String v) {
- for (TInputMethod c: TInputMethod.values()) {
- if (c.value.equals(v)) {
- return c;
- }
- }
- throw new IllegalArgumentException(v.toString());
- }
+ public static TInputMethod fromValue(String v) {
+ for (TInputMethod c : TInputMethod.values()) {
+ if (c.value.equals(v)) {
+ return c;
+ }
+ }
+ throw new IllegalArgumentException(v.toString());
+ }
}
Index: Subtask.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/generated/tasklist/Subtask.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Subtask.java 31 Aug 2006 09:09:23 -0000 1.1.1.1
+++ Subtask.java 17 Jun 2008 13:41:10 -0000 1.2
@@ -5,7 +5,6 @@
// Generated on: 2006.06.29 at 06:09:33 PM CEST
//
-
package org.w3c.unicorn.generated.tasklist;
import javax.xml.bind.annotation.XmlAccessType;
@@ -14,22 +13,24 @@
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
-
/**
- * <p>Java class for subtask element declaration.
+ * <p>
+ * Java class for subtask element declaration.
*
- * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * The following schema fragment specifies the expected content contained within
+ * this class.
*
* <pre>
- * <element name="subtask">
- * <complexType>
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <attribute name="ref" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
- * </restriction>
- * </complexContent>
- * </complexType>
- * </element>
+ * <element name="subtask">
+ * <complexType>
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <attribute name="ref" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ * </element>
* </pre>
*
*
@@ -39,31 +40,28 @@
@XmlRootElement(name = "subtask")
public class Subtask {
- @XmlAttribute(required = true)
- protected String ref;
+ @XmlAttribute(required = true)
+ protected String ref;
- /**
- * Gets the value of the ref property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getRef() {
- return ref;
- }
+ /**
+ * Gets the value of the ref property.
+ *
+ * @return possible object is {@link String }
+ *
+ */
+ public String getRef() {
+ return ref;
+ }
- /**
- * Sets the value of the ref property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setRef(String value) {
- this.ref = value;
- }
+ /**
+ * Sets the value of the ref property.
+ *
+ * @param value
+ * allowed object is {@link String }
+ *
+ */
+ public void setRef(String value) {
+ this.ref = value;
+ }
}
Received on Tuesday, 17 June 2008 13:41:50 UTC