- From: Florent Batard via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 22 Jul 2008 09:16:50 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/org/w3/unicorn/tasklist In directory hutz:/tmp/cvs-serv15547/org/w3/unicorn/tasklist Added Files: MappedType.java CondsType.java RoutineType.java CondType.java ElseType.java ParametersType.java TasklistDocument.java ParameterType.java TasklistType.java OutputseqType.java IfType.java ParamType.java TInputMethod.java TParamType.java OutputgroupType.java ThenType.java TaskType.java ExecType.java ValueType.java TUi.java Log Message: New tasklist generated class --- NEW FILE: TUi.java --- /* * XML Type: tUi * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.TUi * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML tUi(@http://www.w3.org/unicorn/tasklist). * * This is an atomic type that is a restriction of org.w3.unicorn.tasklist.TUi. */ public interface TUi extends org.apache.xmlbeans.XmlString { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(TUi.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("tui9f2ftype"); org.apache.xmlbeans.StringEnumAbstractBase enumValue(); void set(org.apache.xmlbeans.StringEnumAbstractBase e); static final Enum NONE = Enum.forString("none"); static final Enum SIMPLE = Enum.forString("simple"); static final Enum ADVANCED = Enum.forString("advanced"); static final int INT_NONE = Enum.INT_NONE; static final int INT_SIMPLE = Enum.INT_SIMPLE; static final int INT_ADVANCED = Enum.INT_ADVANCED; /** * Enumeration value class for org.w3.unicorn.tasklist.TUi. * These enum values can be used as follows: * <pre> * enum.toString(); // returns the string value of the enum * enum.intValue(); // returns an int value, useful for switches * // e.g., case Enum.INT_NONE * Enum.forString(s); // returns the enum value for a string * Enum.forInt(i); // returns the enum value for an int * </pre> * Enumeration objects are immutable singleton objects that * can be compared using == object equality. They have no * public constructor. See the constants defined within this * class for all the valid values. */ static final class Enum extends org.apache.xmlbeans.StringEnumAbstractBase { /** * Returns the enum value for a string, or null if none. */ public static Enum forString(java.lang.String s) { return (Enum)table.forString(s); } /** * Returns the enum value corresponding to an int, or null if none. */ public static Enum forInt(int i) { return (Enum)table.forInt(i); } private Enum(java.lang.String s, int i) { super(s, i); } static final int INT_NONE = 1; static final int INT_SIMPLE = 2; static final int INT_ADVANCED = 3; public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table = new org.apache.xmlbeans.StringEnumAbstractBase.Table ( new Enum[] { new Enum("none", INT_NONE), new Enum("simple", INT_SIMPLE), new Enum("advanced", INT_ADVANCED), } ); private static final long serialVersionUID = 1L; private java.lang.Object readResolve() { return forInt(intValue()); } } /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.TUi newValue(java.lang.Object obj) { return (org.w3.unicorn.tasklist.TUi) type.newValue( obj ); } public static org.w3.unicorn.tasklist.TUi newInstance() { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.TUi newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.TUi parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.TUi parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.TUi parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.TUi parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.TUi parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.TUi parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.TUi parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.TUi parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.TUi parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.TUi parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.TUi parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.TUi parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.TUi parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.TUi parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.TUi parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.TUi parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.TUi) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: IfType.java --- /* * XML Type: ifType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.IfType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML ifType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface IfType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(IfType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("iftypee50etype"); /** * Gets the "then" element */ org.w3.unicorn.tasklist.ThenType getThen(); /** * Sets the "then" element */ void setThen(org.w3.unicorn.tasklist.ThenType then); /** * Appends and returns a new empty "then" element */ org.w3.unicorn.tasklist.ThenType addNewThen(); /** * Gets the "else" element */ org.w3.unicorn.tasklist.ElseType getElse(); /** * Sets the "else" element */ void setElse(org.w3.unicorn.tasklist.ElseType xelse); /** * Appends and returns a new empty "else" element */ org.w3.unicorn.tasklist.ElseType addNewElse(); /** * Gets the "test" attribute */ java.lang.String getTest(); /** * Gets (as xml) the "test" attribute */ org.apache.xmlbeans.XmlString xgetTest(); /** * True if has "test" attribute */ boolean isSetTest(); /** * Sets the "test" attribute */ void setTest(java.lang.String test); /** * Sets (as xml) the "test" attribute */ void xsetTest(org.apache.xmlbeans.XmlString test); /** * Unsets the "test" attribute */ void unsetTest(); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.IfType newInstance() { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.IfType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.IfType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.IfType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.IfType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.IfType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.IfType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.IfType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.IfType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.IfType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.IfType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.IfType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.IfType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.IfType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.IfType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.IfType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.IfType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.IfType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.IfType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: CondType.java --- /* * XML Type: condType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.CondType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML condType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface CondType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CondType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("condtypea5a9type"); /** * Gets the "value" element */ java.lang.String getValue(); /** * Gets (as xml) the "value" element */ org.apache.xmlbeans.XmlString xgetValue(); /** * Sets the "value" element */ void setValue(java.lang.String value); /** * Sets (as xml) the "value" element */ void xsetValue(org.apache.xmlbeans.XmlString value); /** * Gets the "id" attribute */ java.lang.String getId(); /** * Gets (as xml) the "id" attribute */ org.apache.xmlbeans.XmlString xgetId(); /** * True if has "id" attribute */ boolean isSetId(); /** * Sets the "id" attribute */ void setId(java.lang.String id); /** * Sets (as xml) the "id" attribute */ void xsetId(org.apache.xmlbeans.XmlString id); /** * Unsets the "id" attribute */ void unsetId(); /** * Gets the "result" attribute */ java.lang.String getResult(); /** * Gets (as xml) the "result" attribute */ org.apache.xmlbeans.XmlString xgetResult(); /** * True if has "result" attribute */ boolean isSetResult(); /** * Sets the "result" attribute */ void setResult(java.lang.String result); /** * Sets (as xml) the "result" attribute */ void xsetResult(org.apache.xmlbeans.XmlString result); /** * Unsets the "result" attribute */ void unsetResult(); /** * Gets the "observer" attribute */ java.lang.String getObserver(); /** * Gets (as xml) the "observer" attribute */ org.apache.xmlbeans.XmlNCName xgetObserver(); /** * True if has "observer" attribute */ boolean isSetObserver(); /** * Sets the "observer" attribute */ void setObserver(java.lang.String observer); /** * Sets (as xml) the "observer" attribute */ void xsetObserver(org.apache.xmlbeans.XmlNCName observer); /** * Unsets the "observer" attribute */ void unsetObserver(); /** * Gets the "type" attribute */ java.lang.String getType(); /** * Gets (as xml) the "type" attribute */ org.apache.xmlbeans.XmlString xgetType(); /** * True if has "type" attribute */ boolean isSetType(); /** * Sets the "type" attribute */ void setType(java.lang.String type); /** * Sets (as xml) the "type" attribute */ void xsetType(org.apache.xmlbeans.XmlString type); /** * Unsets the "type" attribute */ void unsetType(); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.CondType newInstance() { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.CondType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.CondType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.CondType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.CondType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.CondType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.CondType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.CondType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.CondType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.CondType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.CondType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.CondType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.CondType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.CondType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.CondType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.CondType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.CondType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.CondType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.CondType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: TasklistType.java --- /* * XML Type: tasklistType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.TasklistType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML tasklistType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface TasklistType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(TasklistType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("tasklisttypec688type"); /** * Gets array of all "task" elements */ org.w3.unicorn.tasklist.TaskType[] getTaskArray(); /** * Gets ith "task" element */ org.w3.unicorn.tasklist.TaskType getTaskArray(int i); /** * Returns number of "task" element */ int sizeOfTaskArray(); /** * Sets array of all "task" element */ void setTaskArray(org.w3.unicorn.tasklist.TaskType[] taskArray); /** * Sets ith "task" element */ void setTaskArray(int i, org.w3.unicorn.tasklist.TaskType task); /** * Inserts and returns a new empty value (as xml) as the ith "task" element */ org.w3.unicorn.tasklist.TaskType insertNewTask(int i); /** * Appends and returns a new empty value (as xml) as the last "task" element */ org.w3.unicorn.tasklist.TaskType addNewTask(); /** * Removes the ith "task" element */ void removeTask(int i); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.TasklistType newInstance() { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.TasklistType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.TasklistType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.TasklistType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.TasklistType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.TasklistType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.TasklistType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.TasklistType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.TasklistType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.TasklistType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.TasklistType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.TasklistType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.TasklistType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.TasklistType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.TasklistType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.TasklistType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.TasklistType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.TasklistType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.TasklistType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: RoutineType.java --- /* * XML Type: routineType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.RoutineType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML routineType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface RoutineType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(RoutineType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("routinetype8e79type"); /** * Gets array of all "if" elements */ org.w3.unicorn.tasklist.IfType[] getIfArray(); /** * Gets ith "if" element */ org.w3.unicorn.tasklist.IfType getIfArray(int i); /** * Returns number of "if" element */ int sizeOfIfArray(); /** * Sets array of all "if" element */ void setIfArray(org.w3.unicorn.tasklist.IfType[] xifArray); /** * Sets ith "if" element */ void setIfArray(int i, org.w3.unicorn.tasklist.IfType xif); /** * Inserts and returns a new empty value (as xml) as the ith "if" element */ org.w3.unicorn.tasklist.IfType insertNewIf(int i); /** * Appends and returns a new empty value (as xml) as the last "if" element */ org.w3.unicorn.tasklist.IfType addNewIf(); /** * Removes the ith "if" element */ void removeIf(int i); /** * Gets array of all "exec" elements */ org.w3.unicorn.tasklist.ExecType[] getExecArray(); /** * Gets ith "exec" element */ org.w3.unicorn.tasklist.ExecType getExecArray(int i); /** * Returns number of "exec" element */ int sizeOfExecArray(); /** * Sets array of all "exec" element */ void setExecArray(org.w3.unicorn.tasklist.ExecType[] execArray); /** * Sets ith "exec" element */ void setExecArray(int i, org.w3.unicorn.tasklist.ExecType exec); /** * Inserts and returns a new empty value (as xml) as the ith "exec" element */ org.w3.unicorn.tasklist.ExecType insertNewExec(int i); /** * Appends and returns a new empty value (as xml) as the last "exec" element */ org.w3.unicorn.tasklist.ExecType addNewExec(); /** * Removes the ith "exec" element */ void removeExec(int i); /** * Gets the "ref" attribute */ java.lang.String getRef(); /** * Gets (as xml) the "ref" attribute */ org.apache.xmlbeans.XmlString xgetRef(); /** * True if has "ref" attribute */ boolean isSetRef(); /** * Sets the "ref" attribute */ void setRef(java.lang.String ref); /** * Sets (as xml) the "ref" attribute */ void xsetRef(org.apache.xmlbeans.XmlString ref); /** * Unsets the "ref" attribute */ void unsetRef(); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.RoutineType newInstance() { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.RoutineType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.RoutineType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.RoutineType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.RoutineType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.RoutineType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.RoutineType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.RoutineType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.RoutineType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.RoutineType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.RoutineType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.RoutineType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.RoutineType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.RoutineType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.RoutineType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.RoutineType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.RoutineType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.RoutineType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.RoutineType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: OutputseqType.java --- /* * XML Type: outputseqType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.OutputseqType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML outputseqType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface OutputseqType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(OutputseqType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("outputseqtypeebfftype"); /** * Gets array of all "outputgroup" elements */ org.w3.unicorn.tasklist.OutputgroupType[] getOutputgroupArray(); /** * Gets ith "outputgroup" element */ org.w3.unicorn.tasklist.OutputgroupType getOutputgroupArray(int i); /** * Returns number of "outputgroup" element */ int sizeOfOutputgroupArray(); /** * Sets array of all "outputgroup" element */ void setOutputgroupArray(org.w3.unicorn.tasklist.OutputgroupType[] outputgroupArray); /** * Sets ith "outputgroup" element */ void setOutputgroupArray(int i, org.w3.unicorn.tasklist.OutputgroupType outputgroup); /** * Inserts and returns a new empty value (as xml) as the ith "outputgroup" element */ org.w3.unicorn.tasklist.OutputgroupType insertNewOutputgroup(int i); /** * Appends and returns a new empty value (as xml) as the last "outputgroup" element */ org.w3.unicorn.tasklist.OutputgroupType addNewOutputgroup(); /** * Removes the ith "outputgroup" element */ void removeOutputgroup(int i); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.OutputseqType newInstance() { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.OutputseqType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.OutputseqType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.OutputseqType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.OutputseqType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.OutputseqType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.OutputseqType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.OutputseqType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.OutputseqType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.OutputseqType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.OutputseqType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.OutputseqType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.OutputseqType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.OutputseqType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.OutputseqType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.OutputseqType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.OutputseqType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.OutputseqType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.OutputseqType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: ValueType.java --- /* * XML Type: valueType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.ValueType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML valueType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface ValueType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ValueType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("valuetypebb6ctype"); /** * Gets array of all "mapped" elements */ org.w3.unicorn.tasklist.MappedType[] getMappedArray(); /** * Gets ith "mapped" element */ org.w3.unicorn.tasklist.MappedType getMappedArray(int i); /** * Returns number of "mapped" element */ int sizeOfMappedArray(); /** * Sets array of all "mapped" element */ void setMappedArray(org.w3.unicorn.tasklist.MappedType[] mappedArray); /** * Sets ith "mapped" element */ void setMappedArray(int i, org.w3.unicorn.tasklist.MappedType mapped); /** * Inserts and returns a new empty value (as xml) as the ith "mapped" element */ org.w3.unicorn.tasklist.MappedType insertNewMapped(int i); /** * Appends and returns a new empty value (as xml) as the last "mapped" element */ org.w3.unicorn.tasklist.MappedType addNewMapped(); /** * Removes the ith "mapped" element */ void removeMapped(int i); /** * Gets the "name" attribute */ java.lang.String getName(); /** * Gets (as xml) the "name" attribute */ org.apache.xmlbeans.XmlString xgetName(); /** * True if has "name" attribute */ boolean isSetName(); /** * Sets the "name" attribute */ void setName(java.lang.String name); /** * Sets (as xml) the "name" attribute */ void xsetName(org.apache.xmlbeans.XmlString name); /** * Unsets the "name" attribute */ void unsetName(); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.ValueType newInstance() { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.ValueType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.ValueType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.ValueType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.ValueType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.ValueType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.ValueType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.ValueType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.ValueType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.ValueType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.ValueType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.ValueType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.ValueType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.ValueType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.ValueType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.ValueType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ValueType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ValueType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ValueType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: ElseType.java --- /* * XML Type: elseType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.ElseType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML elseType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface ElseType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ElseType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("elsetypeabb2type"); /** * Gets array of all "if" elements */ org.w3.unicorn.tasklist.IfType[] getIfArray(); /** * Gets ith "if" element */ org.w3.unicorn.tasklist.IfType getIfArray(int i); /** * Returns number of "if" element */ int sizeOfIfArray(); /** * Sets array of all "if" element */ void setIfArray(org.w3.unicorn.tasklist.IfType[] xifArray); /** * Sets ith "if" element */ void setIfArray(int i, org.w3.unicorn.tasklist.IfType xif); /** * Inserts and returns a new empty value (as xml) as the ith "if" element */ org.w3.unicorn.tasklist.IfType insertNewIf(int i); /** * Appends and returns a new empty value (as xml) as the last "if" element */ org.w3.unicorn.tasklist.IfType addNewIf(); /** * Removes the ith "if" element */ void removeIf(int i); /** * Gets array of all "exec" elements */ org.w3.unicorn.tasklist.ExecType[] getExecArray(); /** * Gets ith "exec" element */ org.w3.unicorn.tasklist.ExecType getExecArray(int i); /** * Returns number of "exec" element */ int sizeOfExecArray(); /** * Sets array of all "exec" element */ void setExecArray(org.w3.unicorn.tasklist.ExecType[] execArray); /** * Sets ith "exec" element */ void setExecArray(int i, org.w3.unicorn.tasklist.ExecType exec); /** * Inserts and returns a new empty value (as xml) as the ith "exec" element */ org.w3.unicorn.tasklist.ExecType insertNewExec(int i); /** * Appends and returns a new empty value (as xml) as the last "exec" element */ org.w3.unicorn.tasklist.ExecType addNewExec(); /** * Removes the ith "exec" element */ void removeExec(int i); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.ElseType newInstance() { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.ElseType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.ElseType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.ElseType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.ElseType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.ElseType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.ElseType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.ElseType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.ElseType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.ElseType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.ElseType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.ElseType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.ElseType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.ElseType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.ElseType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.ElseType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ElseType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ElseType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ElseType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: TParamType.java --- /* * XML Type: tParamType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.TParamType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML tParamType(@http://www.w3.org/unicorn/tasklist). * * This is an atomic type that is a restriction of org.w3.unicorn.tasklist.TParamType. */ public interface TParamType extends org.apache.xmlbeans.XmlString { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(TParamType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("tparamtype1eb2type"); org.apache.xmlbeans.StringEnumAbstractBase enumValue(); void set(org.apache.xmlbeans.StringEnumAbstractBase e); static final Enum CHECKBOX = Enum.forString("checkbox"); static final Enum CHECKBOXLIST = Enum.forString("checkboxlist"); static final Enum DROPDOWN = Enum.forString("dropdown"); static final Enum TEXTAREA = Enum.forString("textarea"); static final Enum TEXTFIELD = Enum.forString("textfield"); static final Enum RADIO = Enum.forString("radio"); static final int INT_CHECKBOX = Enum.INT_CHECKBOX; static final int INT_CHECKBOXLIST = Enum.INT_CHECKBOXLIST; static final int INT_DROPDOWN = Enum.INT_DROPDOWN; static final int INT_TEXTAREA = Enum.INT_TEXTAREA; static final int INT_TEXTFIELD = Enum.INT_TEXTFIELD; static final int INT_RADIO = Enum.INT_RADIO; /** * Enumeration value class for org.w3.unicorn.tasklist.TParamType. * These enum values can be used as follows: * <pre> * enum.toString(); // returns the string value of the enum * enum.intValue(); // returns an int value, useful for switches * // e.g., case Enum.INT_CHECKBOX * Enum.forString(s); // returns the enum value for a string * Enum.forInt(i); // returns the enum value for an int * </pre> * Enumeration objects are immutable singleton objects that * can be compared using == object equality. They have no * public constructor. See the constants defined within this * class for all the valid values. */ static final class Enum extends org.apache.xmlbeans.StringEnumAbstractBase { /** * Returns the enum value for a string, or null if none. */ public static Enum forString(java.lang.String s) { return (Enum)table.forString(s); } /** * Returns the enum value corresponding to an int, or null if none. */ public static Enum forInt(int i) { return (Enum)table.forInt(i); } private Enum(java.lang.String s, int i) { super(s, i); } static final int INT_CHECKBOX = 1; static final int INT_CHECKBOXLIST = 2; static final int INT_DROPDOWN = 3; static final int INT_TEXTAREA = 4; static final int INT_TEXTFIELD = 5; static final int INT_RADIO = 6; public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table = new org.apache.xmlbeans.StringEnumAbstractBase.Table ( new Enum[] { new Enum("checkbox", INT_CHECKBOX), new Enum("checkboxlist", INT_CHECKBOXLIST), new Enum("dropdown", INT_DROPDOWN), new Enum("textarea", INT_TEXTAREA), new Enum("textfield", INT_TEXTFIELD), new Enum("radio", INT_RADIO), } ); private static final long serialVersionUID = 1L; private java.lang.Object readResolve() { return forInt(intValue()); } } /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.TParamType newValue(java.lang.Object obj) { return (org.w3.unicorn.tasklist.TParamType) type.newValue( obj ); } public static org.w3.unicorn.tasklist.TParamType newInstance() { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.TParamType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.TParamType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.TParamType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.TParamType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.TParamType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.TParamType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.TParamType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.TParamType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.TParamType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.TParamType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.TParamType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.TParamType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.TParamType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.TParamType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.TParamType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.TParamType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.TParamType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.TParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: OutputgroupType.java --- /* * XML Type: outputgroupType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.OutputgroupType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML outputgroupType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface OutputgroupType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(OutputgroupType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("outputgrouptype2b5ftype"); /** * Gets array of all "tasksort" elements */ java.lang.String[] getTasksortArray(); /** * Gets ith "tasksort" element */ java.lang.String getTasksortArray(int i); /** * Gets (as xml) array of all "tasksort" elements */ org.apache.xmlbeans.XmlString[] xgetTasksortArray(); /** * Gets (as xml) ith "tasksort" element */ org.apache.xmlbeans.XmlString xgetTasksortArray(int i); /** * Returns number of "tasksort" element */ int sizeOfTasksortArray(); /** * Sets array of all "tasksort" element */ void setTasksortArray(java.lang.String[] tasksortArray); /** * Sets ith "tasksort" element */ void setTasksortArray(int i, java.lang.String tasksort); /** * Sets (as xml) array of all "tasksort" element */ void xsetTasksortArray(org.apache.xmlbeans.XmlString[] tasksortArray); /** * Sets (as xml) ith "tasksort" element */ void xsetTasksortArray(int i, org.apache.xmlbeans.XmlString tasksort); /** * Inserts the value as the ith "tasksort" element */ void insertTasksort(int i, java.lang.String tasksort); /** * Appends the value as the last "tasksort" element */ void addTasksort(java.lang.String tasksort); /** * Inserts and returns a new empty value (as xml) as the ith "tasksort" element */ org.apache.xmlbeans.XmlString insertNewTasksort(int i); /** * Appends and returns a new empty value (as xml) as the last "tasksort" element */ org.apache.xmlbeans.XmlString addNewTasksort(); /** * Removes the ith "tasksort" element */ void removeTasksort(int i); /** * Gets the "id" attribute */ byte getId(); /** * Gets (as xml) the "id" attribute */ org.apache.xmlbeans.XmlByte xgetId(); /** * True if has "id" attribute */ boolean isSetId(); /** * Sets the "id" attribute */ void setId(byte id); /** * Sets (as xml) the "id" attribute */ void xsetId(org.apache.xmlbeans.XmlByte id); /** * Unsets the "id" attribute */ void unsetId(); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.OutputgroupType newInstance() { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.OutputgroupType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.OutputgroupType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.OutputgroupType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.OutputgroupType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.OutputgroupType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.OutputgroupType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.OutputgroupType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.OutputgroupType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.OutputgroupType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.OutputgroupType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.OutputgroupType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.OutputgroupType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.OutputgroupType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.OutputgroupType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.OutputgroupType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.OutputgroupType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.OutputgroupType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.OutputgroupType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: CondsType.java --- /* * XML Type: condsType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.CondsType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML condsType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface CondsType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CondsType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("condstypeb34ctype"); /** * Gets array of all "cond" elements */ org.w3.unicorn.tasklist.CondType[] getCondArray(); /** * Gets ith "cond" element */ org.w3.unicorn.tasklist.CondType getCondArray(int i); /** * Returns number of "cond" element */ int sizeOfCondArray(); /** * Sets array of all "cond" element */ void setCondArray(org.w3.unicorn.tasklist.CondType[] condArray); /** * Sets ith "cond" element */ void setCondArray(int i, org.w3.unicorn.tasklist.CondType cond); /** * Inserts and returns a new empty value (as xml) as the ith "cond" element */ org.w3.unicorn.tasklist.CondType insertNewCond(int i); /** * Appends and returns a new empty value (as xml) as the last "cond" element */ org.w3.unicorn.tasklist.CondType addNewCond(); /** * Removes the ith "cond" element */ void removeCond(int i); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.CondsType newInstance() { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.CondsType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.CondsType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.CondsType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.CondsType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.CondsType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.CondsType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.CondsType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.CondsType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.CondsType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.CondsType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.CondsType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.CondsType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.CondsType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.CondsType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.CondsType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.CondsType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.CondsType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.CondsType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: ExecType.java --- /* * XML Type: execType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.ExecType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML execType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface ExecType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ExecType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("exectypeed5atype"); /** * Gets the "param" element */ org.w3.unicorn.tasklist.ParamType getParam(); /** * True if has "param" element */ boolean isSetParam(); /** * Sets the "param" element */ void setParam(org.w3.unicorn.tasklist.ParamType param); /** * Appends and returns a new empty "param" element */ org.w3.unicorn.tasklist.ParamType addNewParam(); /** * Unsets the "param" element */ void unsetParam(); /** * Gets the "id" attribute */ java.lang.String getId(); /** * Gets (as xml) the "id" attribute */ org.apache.xmlbeans.XmlString xgetId(); /** * True if has "id" attribute */ boolean isSetId(); /** * Sets the "id" attribute */ void setId(java.lang.String id); /** * Sets (as xml) the "id" attribute */ void xsetId(org.apache.xmlbeans.XmlString id); /** * Unsets the "id" attribute */ void unsetId(); /** * Gets the "value" attribute */ java.lang.String getValue(); /** * Gets (as xml) the "value" attribute */ org.apache.xmlbeans.XmlString xgetValue(); /** * True if has "value" attribute */ boolean isSetValue(); /** * Sets the "value" attribute */ void setValue(java.lang.String value); /** * Sets (as xml) the "value" attribute */ void xsetValue(org.apache.xmlbeans.XmlString value); /** * Unsets the "value" attribute */ void unsetValue(); /** * Gets the "type" attribute */ java.lang.String getType(); /** * Gets (as xml) the "type" attribute */ org.apache.xmlbeans.XmlString xgetType(); /** * True if has "type" attribute */ boolean isSetType(); /** * Sets the "type" attribute */ void setType(java.lang.String type); /** * Sets (as xml) the "type" attribute */ void xsetType(org.apache.xmlbeans.XmlString type); /** * Unsets the "type" attribute */ void unsetType(); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.ExecType newInstance() { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.ExecType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.ExecType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.ExecType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.ExecType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.ExecType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.ExecType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.ExecType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.ExecType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.ExecType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.ExecType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.ExecType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.ExecType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.ExecType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.ExecType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.ExecType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ExecType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ExecType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ExecType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: TasklistDocument.java --- /* * An XML document type. * Localname: tasklist * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.TasklistDocument * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * A document containing one tasklist(@http://www.w3.org/unicorn/tasklist) element. * * This is a complex type. */ public interface TasklistDocument extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(TasklistDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("tasklist8a12doctype"); /** * Gets the "tasklist" element */ org.w3.unicorn.tasklist.TasklistType getTasklist(); /** * Sets the "tasklist" element */ void setTasklist(org.w3.unicorn.tasklist.TasklistType tasklist); /** * Appends and returns a new empty "tasklist" element */ org.w3.unicorn.tasklist.TasklistType addNewTasklist(); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.TasklistDocument newInstance() { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.TasklistDocument newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.TasklistDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.TasklistDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.TasklistDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.TasklistDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.TasklistDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.TasklistDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.TasklistDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.TasklistDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.TasklistDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.TasklistDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.TasklistDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.TasklistDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.TasklistDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.TasklistDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.TasklistDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.TasklistDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.TasklistDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: TaskType.java --- /* * XML Type: taskType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.TaskType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML taskType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface TaskType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(TaskType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("tasktype85e6type"); /** * Gets the "conds" element */ org.w3.unicorn.tasklist.CondsType getConds(); /** * Sets the "conds" element */ void setConds(org.w3.unicorn.tasklist.CondsType conds); /** * Appends and returns a new empty "conds" element */ org.w3.unicorn.tasklist.CondsType addNewConds(); /** * Gets the "routine" element */ org.w3.unicorn.tasklist.RoutineType getRoutine(); /** * Sets the "routine" element */ void setRoutine(org.w3.unicorn.tasklist.RoutineType routine); /** * Appends and returns a new empty "routine" element */ org.w3.unicorn.tasklist.RoutineType addNewRoutine(); /** * Gets the "outputseq" element */ org.w3.unicorn.tasklist.OutputseqType getOutputseq(); /** * Sets the "outputseq" element */ void setOutputseq(org.w3.unicorn.tasklist.OutputseqType outputseq); /** * Appends and returns a new empty "outputseq" element */ org.w3.unicorn.tasklist.OutputseqType addNewOutputseq(); /** * Gets the "parameters" element */ org.w3.unicorn.tasklist.ParametersType getParameters(); /** * Sets the "parameters" element */ void setParameters(org.w3.unicorn.tasklist.ParametersType parameters); /** * Appends and returns a new empty "parameters" element */ org.w3.unicorn.tasklist.ParametersType addNewParameters(); /** * Gets the "id" attribute */ java.lang.String getId(); /** * Gets (as xml) the "id" attribute */ org.apache.xmlbeans.XmlString xgetId(); /** * Sets the "id" attribute */ void setId(java.lang.String id); /** * Sets (as xml) the "id" attribute */ void xsetId(org.apache.xmlbeans.XmlString id); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.TaskType newInstance() { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.TaskType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.TaskType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.TaskType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.TaskType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.TaskType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.TaskType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.TaskType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.TaskType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.TaskType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.TaskType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.TaskType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.TaskType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.TaskType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.TaskType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.TaskType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.TaskType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.TaskType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.TaskType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: ParamType.java --- /* * XML Type: paramType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.ParamType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML paramType(@http://www.w3.org/unicorn/tasklist). * * This is an atomic type that is a restriction of org.w3.unicorn.tasklist.ParamType. */ public interface ParamType extends org.apache.xmlbeans.XmlString { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ParamType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("paramtypeacd0type"); /** * Gets the "name" attribute */ java.lang.String getName(); /** * Gets (as xml) the "name" attribute */ org.apache.xmlbeans.XmlNCName xgetName(); /** * True if has "name" attribute */ boolean isSetName(); /** * Sets the "name" attribute */ void setName(java.lang.String name); /** * Sets (as xml) the "name" attribute */ void xsetName(org.apache.xmlbeans.XmlNCName name); /** * Unsets the "name" attribute */ void unsetName(); /** * Gets the "observer" attribute */ java.lang.String getObserver(); /** * Gets (as xml) the "observer" attribute */ org.apache.xmlbeans.XmlNCName xgetObserver(); /** * True if has "observer" attribute */ boolean isSetObserver(); /** * Sets the "observer" attribute */ void setObserver(java.lang.String observer); /** * Sets (as xml) the "observer" attribute */ void xsetObserver(org.apache.xmlbeans.XmlNCName observer); /** * Unsets the "observer" attribute */ void unsetObserver(); /** * Gets the "value" attribute */ java.lang.String getValue(); /** * Gets (as xml) the "value" attribute */ org.apache.xmlbeans.XmlString xgetValue(); /** * True if has "value" attribute */ boolean isSetValue(); /** * Sets the "value" attribute */ void setValue(java.lang.String value); /** * Sets (as xml) the "value" attribute */ void xsetValue(org.apache.xmlbeans.XmlString value); /** * Unsets the "value" attribute */ void unsetValue(); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.ParamType newInstance() { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.ParamType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.ParamType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.ParamType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.ParamType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.ParamType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.ParamType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.ParamType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.ParamType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.ParamType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.ParamType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.ParamType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.ParamType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.ParamType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.ParamType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.ParamType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ParamType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ParamType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ParamType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: ParametersType.java --- /* * XML Type: parametersType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.ParametersType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML parametersType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface ParametersType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ParametersType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("parameterstypeeca1type"); /** * Gets array of all "parameter" elements */ org.w3.unicorn.tasklist.ParameterType[] getParameterArray(); /** * Gets ith "parameter" element */ org.w3.unicorn.tasklist.ParameterType getParameterArray(int i); /** * Returns number of "parameter" element */ int sizeOfParameterArray(); /** * Sets array of all "parameter" element */ void setParameterArray(org.w3.unicorn.tasklist.ParameterType[] parameterArray); /** * Sets ith "parameter" element */ void setParameterArray(int i, org.w3.unicorn.tasklist.ParameterType parameter); /** * Inserts and returns a new empty value (as xml) as the ith "parameter" element */ org.w3.unicorn.tasklist.ParameterType insertNewParameter(int i); /** * Appends and returns a new empty value (as xml) as the last "parameter" element */ org.w3.unicorn.tasklist.ParameterType addNewParameter(); /** * Removes the ith "parameter" element */ void removeParameter(int i); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.ParametersType newInstance() { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.ParametersType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.ParametersType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.ParametersType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.ParametersType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.ParametersType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.ParametersType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.ParametersType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.ParametersType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.ParametersType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.ParametersType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.ParametersType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.ParametersType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.ParametersType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.ParametersType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.ParametersType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ParametersType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ParametersType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ParametersType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: MappedType.java --- /* * XML Type: mappedType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.MappedType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML mappedType(@http://www.w3.org/unicorn/tasklist). * * This is an atomic type that is a restriction of org.w3.unicorn.tasklist.MappedType. */ public interface MappedType extends org.apache.xmlbeans.XmlString { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(MappedType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("mappedtype13b8type"); /** * Gets the "param" attribute */ java.lang.String getParam(); /** * Gets (as xml) the "param" attribute */ org.apache.xmlbeans.XmlNCName xgetParam(); /** * Sets the "param" attribute */ void setParam(java.lang.String param); /** * Sets (as xml) the "param" attribute */ void xsetParam(org.apache.xmlbeans.XmlNCName param); /** * Gets the "observer" attribute */ java.lang.String getObserver(); /** * Gets (as xml) the "observer" attribute */ org.apache.xmlbeans.XmlNCName xgetObserver(); /** * Sets the "observer" attribute */ void setObserver(java.lang.String observer); /** * Sets (as xml) the "observer" attribute */ void xsetObserver(org.apache.xmlbeans.XmlNCName observer); /** * Gets the "value" attribute */ java.lang.String getValue(); /** * Gets (as xml) the "value" attribute */ org.apache.xmlbeans.XmlString xgetValue(); /** * True if has "value" attribute */ boolean isSetValue(); /** * Sets the "value" attribute */ void setValue(java.lang.String value); /** * Sets (as xml) the "value" attribute */ void xsetValue(org.apache.xmlbeans.XmlString value); /** * Unsets the "value" attribute */ void unsetValue(); /** * Gets the "inputmethod" attribute */ java.util.List getInputmethod(); /** * Gets (as xml) the "inputmethod" attribute */ org.w3.unicorn.tasklist.MappedType.Inputmethod xgetInputmethod(); /** * True if has "inputmethod" attribute */ boolean isSetInputmethod(); /** * Sets the "inputmethod" attribute */ void setInputmethod(java.util.List inputmethod); /** * Sets (as xml) the "inputmethod" attribute */ void xsetInputmethod(org.w3.unicorn.tasklist.MappedType.Inputmethod inputmethod); /** * Unsets the "inputmethod" attribute */ void unsetInputmethod(); /** * An XML inputmethod(@). * * This is a list type whose items are org.w3.unicorn.tasklist.TInputMethod. */ public interface Inputmethod extends org.apache.xmlbeans.XmlAnySimpleType { java.util.List getListValue(); java.util.List xgetListValue(); void setListValue(java.util.List list); /** @deprecated */ java.util.List listValue(); /** @deprecated */ java.util.List xlistValue(); /** @deprecated */ void set(java.util.List list); public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(Inputmethod.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("inputmethod394battrtype"); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.MappedType.Inputmethod newValue(java.lang.Object obj) { return (org.w3.unicorn.tasklist.MappedType.Inputmethod) type.newValue( obj ); } public static org.w3.unicorn.tasklist.MappedType.Inputmethod newInstance() { return (org.w3.unicorn.tasklist.MappedType.Inputmethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.MappedType.Inputmethod newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.MappedType.Inputmethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } private Factory() { } // No instance of this class allowed } } /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.MappedType newInstance() { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.MappedType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.MappedType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.MappedType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.MappedType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.MappedType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.MappedType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.MappedType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.MappedType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.MappedType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.MappedType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.MappedType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.MappedType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.MappedType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.MappedType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.MappedType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.MappedType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.MappedType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.MappedType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: ParameterType.java --- /* * XML Type: parameterType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.ParameterType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML parameterType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface ParameterType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ParameterType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("parametertype6db4type"); /** * Gets array of all "value" elements */ org.w3.unicorn.tasklist.ValueType[] getValueArray(); /** * Gets ith "value" element */ org.w3.unicorn.tasklist.ValueType getValueArray(int i); /** * Returns number of "value" element */ int sizeOfValueArray(); /** * Sets array of all "value" element */ void setValueArray(org.w3.unicorn.tasklist.ValueType[] valueArray); /** * Sets ith "value" element */ void setValueArray(int i, org.w3.unicorn.tasklist.ValueType value); /** * Inserts and returns a new empty value (as xml) as the ith "value" element */ org.w3.unicorn.tasklist.ValueType insertNewValue(int i); /** * Appends and returns a new empty value (as xml) as the last "value" element */ org.w3.unicorn.tasklist.ValueType addNewValue(); /** * Removes the ith "value" element */ void removeValue(int i); /** * Gets the "name" attribute */ java.lang.String getName(); /** * Gets (as xml) the "name" attribute */ org.apache.xmlbeans.XmlNCName xgetName(); /** * Sets the "name" attribute */ void setName(java.lang.String name); /** * Sets (as xml) the "name" attribute */ void xsetName(org.apache.xmlbeans.XmlNCName name); /** * Gets the "type" attribute */ org.w3.unicorn.tasklist.TParamType.Enum getType(); /** * Gets (as xml) the "type" attribute */ org.w3.unicorn.tasklist.TParamType xgetType(); /** * Sets the "type" attribute */ void setType(org.w3.unicorn.tasklist.TParamType.Enum type); /** * Sets (as xml) the "type" attribute */ void xsetType(org.w3.unicorn.tasklist.TParamType type); /** * Gets the "default" attribute */ java.lang.String getDefault(); /** * Gets (as xml) the "default" attribute */ org.apache.xmlbeans.XmlString xgetDefault(); /** * True if has "default" attribute */ boolean isSetDefault(); /** * Sets the "default" attribute */ void setDefault(java.lang.String xdefault); /** * Sets (as xml) the "default" attribute */ void xsetDefault(org.apache.xmlbeans.XmlString xdefault); /** * Unsets the "default" attribute */ void unsetDefault(); /** * Gets the "ui" attribute */ org.w3.unicorn.tasklist.TUi.Enum getUi(); /** * Gets (as xml) the "ui" attribute */ org.w3.unicorn.tasklist.TUi xgetUi(); /** * True if has "ui" attribute */ boolean isSetUi(); /** * Sets the "ui" attribute */ void setUi(org.w3.unicorn.tasklist.TUi.Enum ui); /** * Sets (as xml) the "ui" attribute */ void xsetUi(org.w3.unicorn.tasklist.TUi ui); /** * Unsets the "ui" attribute */ void unsetUi(); /** * Gets the "observer" attribute */ java.lang.String getObserver(); /** * Gets (as xml) the "observer" attribute */ org.apache.xmlbeans.XmlNCName xgetObserver(); /** * True if has "observer" attribute */ boolean isSetObserver(); /** * Sets the "observer" attribute */ void setObserver(java.lang.String observer); /** * Sets (as xml) the "observer" attribute */ void xsetObserver(org.apache.xmlbeans.XmlNCName observer); /** * Unsets the "observer" attribute */ void unsetObserver(); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.ParameterType newInstance() { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.ParameterType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.ParameterType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.ParameterType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.ParameterType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.ParameterType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.ParameterType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.ParameterType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.ParameterType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.ParameterType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.ParameterType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.ParameterType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.ParameterType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.ParameterType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.ParameterType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.ParameterType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ParameterType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ParameterType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ParameterType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: ThenType.java --- /* * XML Type: thenType * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.ThenType * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML thenType(@http://www.w3.org/unicorn/tasklist). * * This is a complex type. */ public interface ThenType extends org.apache.xmlbeans.XmlObject { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ThenType.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("thentype724etype"); /** * Gets array of all "if" elements */ org.w3.unicorn.tasklist.IfType[] getIfArray(); /** * Gets ith "if" element */ org.w3.unicorn.tasklist.IfType getIfArray(int i); /** * Returns number of "if" element */ int sizeOfIfArray(); /** * Sets array of all "if" element */ void setIfArray(org.w3.unicorn.tasklist.IfType[] xifArray); /** * Sets ith "if" element */ void setIfArray(int i, org.w3.unicorn.tasklist.IfType xif); /** * Inserts and returns a new empty value (as xml) as the ith "if" element */ org.w3.unicorn.tasklist.IfType insertNewIf(int i); /** * Appends and returns a new empty value (as xml) as the last "if" element */ org.w3.unicorn.tasklist.IfType addNewIf(); /** * Removes the ith "if" element */ void removeIf(int i); /** * Gets array of all "exec" elements */ org.w3.unicorn.tasklist.ExecType[] getExecArray(); /** * Gets ith "exec" element */ org.w3.unicorn.tasklist.ExecType getExecArray(int i); /** * Returns number of "exec" element */ int sizeOfExecArray(); /** * Sets array of all "exec" element */ void setExecArray(org.w3.unicorn.tasklist.ExecType[] execArray); /** * Sets ith "exec" element */ void setExecArray(int i, org.w3.unicorn.tasklist.ExecType exec); /** * Inserts and returns a new empty value (as xml) as the ith "exec" element */ org.w3.unicorn.tasklist.ExecType insertNewExec(int i); /** * Appends and returns a new empty value (as xml) as the last "exec" element */ org.w3.unicorn.tasklist.ExecType addNewExec(); /** * Removes the ith "exec" element */ void removeExec(int i); /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.ThenType newInstance() { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.ThenType newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.ThenType parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.ThenType parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.ThenType parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.ThenType parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.ThenType parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.ThenType parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.ThenType parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.ThenType parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.ThenType parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.ThenType parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.ThenType parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.ThenType parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.ThenType parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.ThenType parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ThenType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.ThenType parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.ThenType) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } } --- NEW FILE: TInputMethod.java --- /* * XML Type: tInputMethod * Namespace: http://www.w3.org/unicorn/tasklist * Java type: org.w3.unicorn.tasklist.TInputMethod * * Automatically generated - do not modify. */ package org.w3.unicorn.tasklist; /** * An XML tInputMethod(@http://www.w3.org/unicorn/tasklist). * * This is an atomic type that is a restriction of org.w3.unicorn.tasklist.TInputMethod. */ public interface TInputMethod extends org.apache.xmlbeans.XmlString { public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(TInputMethod.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s3149679C42AE7ADEA40C6B779897203B").resolveHandle("tinputmethode58etype"); org.apache.xmlbeans.StringEnumAbstractBase enumValue(); void set(org.apache.xmlbeans.StringEnumAbstractBase e); static final Enum FILE = Enum.forString("file"); static final Enum DIRECT = Enum.forString("direct"); static final Enum URI = Enum.forString("uri"); static final int INT_FILE = Enum.INT_FILE; static final int INT_DIRECT = Enum.INT_DIRECT; static final int INT_URI = Enum.INT_URI; /** * Enumeration value class for org.w3.unicorn.tasklist.TInputMethod. * These enum values can be used as follows: * <pre> * enum.toString(); // returns the string value of the enum * enum.intValue(); // returns an int value, useful for switches * // e.g., case Enum.INT_FILE * Enum.forString(s); // returns the enum value for a string * Enum.forInt(i); // returns the enum value for an int * </pre> * Enumeration objects are immutable singleton objects that * can be compared using == object equality. They have no * public constructor. See the constants defined within this * class for all the valid values. */ static final class Enum extends org.apache.xmlbeans.StringEnumAbstractBase { /** * Returns the enum value for a string, or null if none. */ public static Enum forString(java.lang.String s) { return (Enum)table.forString(s); } /** * Returns the enum value corresponding to an int, or null if none. */ public static Enum forInt(int i) { return (Enum)table.forInt(i); } private Enum(java.lang.String s, int i) { super(s, i); } static final int INT_FILE = 1; static final int INT_DIRECT = 2; static final int INT_URI = 3; public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table = new org.apache.xmlbeans.StringEnumAbstractBase.Table ( new Enum[] { new Enum("file", INT_FILE), new Enum("direct", INT_DIRECT), new Enum("uri", INT_URI), } ); private static final long serialVersionUID = 1L; private java.lang.Object readResolve() { return forInt(intValue()); } } /** * A factory class with static methods for creating instances * of this type. */ public static final class Factory { public static org.w3.unicorn.tasklist.TInputMethod newValue(java.lang.Object obj) { return (org.w3.unicorn.tasklist.TInputMethod) type.newValue( obj ); } public static org.w3.unicorn.tasklist.TInputMethod newInstance() { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } public static org.w3.unicorn.tasklist.TInputMethod newInstance(org.apache.xmlbeans.XmlOptions options) { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } /** @param xmlAsString the string value to parse */ public static org.w3.unicorn.tasklist.TInputMethod parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } public static org.w3.unicorn.tasklist.TInputMethod parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } /** @param file the file from which to load an xml document */ public static org.w3.unicorn.tasklist.TInputMethod parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } public static org.w3.unicorn.tasklist.TInputMethod parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } public static org.w3.unicorn.tasklist.TInputMethod parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } public static org.w3.unicorn.tasklist.TInputMethod parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } public static org.w3.unicorn.tasklist.TInputMethod parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } public static org.w3.unicorn.tasklist.TInputMethod parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } public static org.w3.unicorn.tasklist.TInputMethod parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } public static org.w3.unicorn.tasklist.TInputMethod parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } public static org.w3.unicorn.tasklist.TInputMethod parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } public static org.w3.unicorn.tasklist.TInputMethod parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } public static org.w3.unicorn.tasklist.TInputMethod parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } public static org.w3.unicorn.tasklist.TInputMethod parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.TInputMethod parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.w3.unicorn.tasklist.TInputMethod parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return (org.w3.unicorn.tasklist.TInputMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */ public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } private Factory() { } // No instance of this class allowed } }
Received on Tuesday, 22 July 2008 09:17:31 UTC