View Javadoc
1 /* 2 * An XML document type. 3 * Localname: step 4 * Namespace: http://mrl.sf.net 5 * Java type: net.sf.mrl.StepDocument 6 * 7 * Automatically generated - do not modify. 8 */ 9 package net.sf.mrl; 10 11 12 /*** 13 * A document containing one step(@http://mrl.sf.net) element. 14 * 15 * This is a complex type. 16 */ 17 public interface StepDocument extends org.apache.xmlbeans.XmlObject 18 { 19 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.sE29068435D67997CD7F0E8EBB2A08AD1.TypeSystemHolder.typeSystem.resolveHandle("step92c0doctype"); 20 21 /*** 22 * Gets the "step" element 23 */ 24 net.sf.mrl.StepDocument.Step getStep(); 25 26 /*** 27 * Sets the "step" element 28 */ 29 void setStep(net.sf.mrl.StepDocument.Step step); 30 31 /*** 32 * Appends and returns a new empty "step" element 33 */ 34 net.sf.mrl.StepDocument.Step addNewStep(); 35 36 /*** 37 * An XML step(@http://mrl.sf.net). 38 * 39 * This is a complex type. 40 */ 41 public interface Step extends org.apache.xmlbeans.XmlObject 42 { 43 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.sE29068435D67997CD7F0E8EBB2A08AD1.TypeSystemHolder.typeSystem.resolveHandle("stepb458elemtype"); 44 45 /*** 46 * Gets array of all "amount" elements 47 */ 48 net.sf.mrl.AmountDocument.Amount[] getAmountArray(); 49 50 /*** 51 * Gets ith "amount" element 52 */ 53 net.sf.mrl.AmountDocument.Amount getAmountArray(int i); 54 55 /*** 56 * Returns number of "amount" element 57 */ 58 int sizeOfAmountArray(); 59 60 /*** 61 * Sets array of all "amount" element 62 */ 63 void setAmountArray(net.sf.mrl.AmountDocument.Amount[] amountArray); 64 65 /*** 66 * Sets ith "amount" element 67 */ 68 void setAmountArray(int i, net.sf.mrl.AmountDocument.Amount amount); 69 70 /*** 71 * Inserts and returns a new empty value (as xml) as the ith "amount" element 72 */ 73 net.sf.mrl.AmountDocument.Amount insertNewAmount(int i); 74 75 /*** 76 * Appends and returns a new empty value (as xml) as the last "amount" element 77 */ 78 net.sf.mrl.AmountDocument.Amount addNewAmount(); 79 80 /*** 81 * Removes the ith "amount" element 82 */ 83 void removeAmount(int i); 84 85 /*** 86 * A factory class with static methods for creating instances 87 * of this type. 88 */ 89 90 public static final class Factory 91 { 92 public static net.sf.mrl.StepDocument.Step newInstance() { 93 return (net.sf.mrl.StepDocument.Step) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } 94 95 public static net.sf.mrl.StepDocument.Step newInstance(org.apache.xmlbeans.XmlOptions options) { 96 return (net.sf.mrl.StepDocument.Step) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } 97 98 private Factory() { } // No instance of this class allowed 99 } 100 } 101 102 /*** 103 * A factory class with static methods for creating instances 104 * of this type. 105 */ 106 107 public static final class Factory 108 { 109 public static net.sf.mrl.StepDocument newInstance() { 110 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } 111 112 public static net.sf.mrl.StepDocument newInstance(org.apache.xmlbeans.XmlOptions options) { 113 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } 114 115 public static net.sf.mrl.StepDocument parse(java.lang.String s) throws org.apache.xmlbeans.XmlException { 116 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( s, type, null ); } 117 118 public static net.sf.mrl.StepDocument parse(java.lang.String s, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { 119 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( s, type, options ); } 120 121 public static net.sf.mrl.StepDocument parse(java.io.File f) throws org.apache.xmlbeans.XmlException, java.io.IOException { 122 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( f, type, null ); } 123 124 public static net.sf.mrl.StepDocument parse(java.io.File f, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { 125 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( f, type, options ); } 126 127 public static net.sf.mrl.StepDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { 128 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } 129 130 public static net.sf.mrl.StepDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { 131 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } 132 133 public static net.sf.mrl.StepDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { 134 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } 135 136 public static net.sf.mrl.StepDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { 137 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } 138 139 public static net.sf.mrl.StepDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { 140 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } 141 142 public static net.sf.mrl.StepDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { 143 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } 144 145 public static net.sf.mrl.StepDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { 146 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } 147 148 public static net.sf.mrl.StepDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { 149 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } 150 151 public static net.sf.mrl.StepDocument parse(weblogic.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, weblogic.xml.stream.XMLStreamException { 152 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } 153 154 public static net.sf.mrl.StepDocument parse(weblogic.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, weblogic.xml.stream.XMLStreamException { 155 return (net.sf.mrl.StepDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } 156 157 public static weblogic.xml.stream.XMLInputStream newValidatingXMLInputStream(weblogic.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, weblogic.xml.stream.XMLStreamException { 158 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } 159 160 public static weblogic.xml.stream.XMLInputStream newValidatingXMLInputStream(weblogic.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, weblogic.xml.stream.XMLStreamException { 161 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } 162 163 private Factory() { } // No instance of this class allowed 164 } 165 }

This page was automatically generated by Maven