001/*
002 * An XML document type.
003 * Localname: replaced-method
004 * Namespace: http://www.springframework.org/schema/beans
005 * Java type: org.springframework.schema.beans.ReplacedMethodDocument
006 *
007 * Automatically generated - do not modify.
008 */
009package org.springframework.schema.beans;
010
011
012/**
013 * A document containing one replaced-method(@http://www.springframework.org/schema/beans) element.
014 *
015 * This is a complex type.
016 */
017public interface ReplacedMethodDocument extends org.apache.xmlbeans.XmlObject
018{
019    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
020        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ReplacedMethodDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s64573255CCD5DEC1A1EC4BE6858B9539").resolveHandle("replacedmethod8e2bdoctype");
021    
022    /**
023     * Gets the "replaced-method" element
024     */
025    org.springframework.schema.beans.ReplacedMethodDocument.ReplacedMethod getReplacedMethod();
026    
027    /**
028     * Sets the "replaced-method" element
029     */
030    void setReplacedMethod(org.springframework.schema.beans.ReplacedMethodDocument.ReplacedMethod replacedMethod);
031    
032    /**
033     * Appends and returns a new empty "replaced-method" element
034     */
035    org.springframework.schema.beans.ReplacedMethodDocument.ReplacedMethod addNewReplacedMethod();
036    
037    /**
038     * An XML replaced-method(@http://www.springframework.org/schema/beans).
039     *
040     * This is a complex type.
041     */
042    public interface ReplacedMethod extends org.apache.xmlbeans.XmlObject
043    {
044        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
045            org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ReplacedMethod.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s64573255CCD5DEC1A1EC4BE6858B9539").resolveHandle("replacedmethod4e35elemtype");
046        
047        /**
048         * Gets array of all "arg-type" elements
049         */
050        org.springframework.schema.beans.ArgTypeDocument.ArgType[] getArgTypeArray();
051        
052        /**
053         * Gets ith "arg-type" element
054         */
055        org.springframework.schema.beans.ArgTypeDocument.ArgType getArgTypeArray(int i);
056        
057        /**
058         * Returns number of "arg-type" element
059         */
060        int sizeOfArgTypeArray();
061        
062        /**
063         * Sets array of all "arg-type" element
064         */
065        void setArgTypeArray(org.springframework.schema.beans.ArgTypeDocument.ArgType[] argTypeArray);
066        
067        /**
068         * Sets ith "arg-type" element
069         */
070        void setArgTypeArray(int i, org.springframework.schema.beans.ArgTypeDocument.ArgType argType);
071        
072        /**
073         * Inserts and returns a new empty value (as xml) as the ith "arg-type" element
074         */
075        org.springframework.schema.beans.ArgTypeDocument.ArgType insertNewArgType(int i);
076        
077        /**
078         * Appends and returns a new empty value (as xml) as the last "arg-type" element
079         */
080        org.springframework.schema.beans.ArgTypeDocument.ArgType addNewArgType();
081        
082        /**
083         * Removes the ith "arg-type" element
084         */
085        void removeArgType(int i);
086        
087        /**
088         * Gets the "name" attribute
089         */
090        java.lang.String getName();
091        
092        /**
093         * Gets (as xml) the "name" attribute
094         */
095        org.apache.xmlbeans.XmlString xgetName();
096        
097        /**
098         * True if has "name" attribute
099         */
100        boolean isSetName();
101        
102        /**
103         * Sets the "name" attribute
104         */
105        void setName(java.lang.String name);
106        
107        /**
108         * Sets (as xml) the "name" attribute
109         */
110        void xsetName(org.apache.xmlbeans.XmlString name);
111        
112        /**
113         * Unsets the "name" attribute
114         */
115        void unsetName();
116        
117        /**
118         * Gets the "replacer" attribute
119         */
120        java.lang.String getReplacer();
121        
122        /**
123         * Gets (as xml) the "replacer" attribute
124         */
125        org.apache.xmlbeans.XmlString xgetReplacer();
126        
127        /**
128         * True if has "replacer" attribute
129         */
130        boolean isSetReplacer();
131        
132        /**
133         * Sets the "replacer" attribute
134         */
135        void setReplacer(java.lang.String replacer);
136        
137        /**
138         * Sets (as xml) the "replacer" attribute
139         */
140        void xsetReplacer(org.apache.xmlbeans.XmlString replacer);
141        
142        /**
143         * Unsets the "replacer" attribute
144         */
145        void unsetReplacer();
146        
147        /**
148         * A factory class with static methods for creating instances
149         * of this type.
150         */
151        
152        public static final class Factory
153        {
154            public static org.springframework.schema.beans.ReplacedMethodDocument.ReplacedMethod newInstance() {
155              return (org.springframework.schema.beans.ReplacedMethodDocument.ReplacedMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
156            
157            public static org.springframework.schema.beans.ReplacedMethodDocument.ReplacedMethod newInstance(org.apache.xmlbeans.XmlOptions options) {
158              return (org.springframework.schema.beans.ReplacedMethodDocument.ReplacedMethod) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
159            
160            private Factory() { } // No instance of this class allowed
161        }
162    }
163    
164    /**
165     * A factory class with static methods for creating instances
166     * of this type.
167     */
168    
169    public static final class Factory
170    {
171        public static org.springframework.schema.beans.ReplacedMethodDocument newInstance() {
172          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
173        
174        public static org.springframework.schema.beans.ReplacedMethodDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
175          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
176        
177        /** @param xmlAsString the string value to parse */
178        public static org.springframework.schema.beans.ReplacedMethodDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
179          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
180        
181        public static org.springframework.schema.beans.ReplacedMethodDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
182          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
183        
184        /** @param file the file from which to load an xml document */
185        public static org.springframework.schema.beans.ReplacedMethodDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
186          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
187        
188        public static org.springframework.schema.beans.ReplacedMethodDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
189          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
190        
191        public static org.springframework.schema.beans.ReplacedMethodDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
192          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
193        
194        public static org.springframework.schema.beans.ReplacedMethodDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
195          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
196        
197        public static org.springframework.schema.beans.ReplacedMethodDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
198          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
199        
200        public static org.springframework.schema.beans.ReplacedMethodDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
201          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
202        
203        public static org.springframework.schema.beans.ReplacedMethodDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
204          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
205        
206        public static org.springframework.schema.beans.ReplacedMethodDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
207          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
208        
209        public static org.springframework.schema.beans.ReplacedMethodDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
210          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
211        
212        public static org.springframework.schema.beans.ReplacedMethodDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
213          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
214        
215        public static org.springframework.schema.beans.ReplacedMethodDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
216          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
217        
218        public static org.springframework.schema.beans.ReplacedMethodDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
219          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
220        
221        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
222        public static org.springframework.schema.beans.ReplacedMethodDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
223          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
224        
225        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
226        public static org.springframework.schema.beans.ReplacedMethodDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
227          return (org.springframework.schema.beans.ReplacedMethodDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
228        
229        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
230        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 {
231          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
232        
233        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
234        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 {
235          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
236        
237        private Factory() { } // No instance of this class allowed
238    }
239}