You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2009/06/18 22:39:53 UTC

svn commit: r786255 [9/13] - in /incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/uima/ src/main/java/org/apache/uima/tools/ src/main/java/...

Added: incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/BitsetFeatureValuesXML.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/BitsetFeatureValuesXML.java?rev=786255&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/BitsetFeatureValuesXML.java (added)
+++ incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/BitsetFeatureValuesXML.java Thu Jun 18 20:39:50 2009
@@ -0,0 +1,146 @@
+/*
+ * XML Type:  BitsetFeatureValuesXML
+ * Namespace: http://www.apache.org/uima/cfe/config/XMLBeans
+ * Java type: org.apache.uima.cfe.config.xmlBeans.BitsetFeatureValuesXML
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.uima.tools.cfe.config.xmlBeans;
+
+
+/**
+ * An XML BitsetFeatureValuesXML(@http://www.apache.org/uima/cfe/config/XMLBeans).
+ *
+ * This is a complex type.
+ */
+public interface BitsetFeatureValuesXML extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
+        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(BitsetFeatureValuesXML.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s6153DD1BF87A9430F8A6FA57AFB2FDD7").resolveHandle("bitsetfeaturevaluesxmldbaatype");
+    
+    /**
+     * Gets the "bitmask" attribute
+     */
+    java.lang.String getBitmask();
+    
+    /**
+     * Gets (as xml) the "bitmask" attribute
+     */
+    org.apache.xmlbeans.XmlString xgetBitmask();
+    
+    /**
+     * Sets the "bitmask" attribute
+     */
+    void setBitmask(java.lang.String bitmask);
+    
+    /**
+     * Sets (as xml) the "bitmask" attribute
+     */
+    void xsetBitmask(org.apache.xmlbeans.XmlString bitmask);
+    
+    /**
+     * Gets the "exact_match" attribute
+     */
+    boolean getExactMatch();
+    
+    /**
+     * Gets (as xml) the "exact_match" attribute
+     */
+    org.apache.xmlbeans.XmlBoolean xgetExactMatch();
+    
+    /**
+     * True if has "exact_match" attribute
+     */
+    boolean isSetExactMatch();
+    
+    /**
+     * Sets the "exact_match" attribute
+     */
+    void setExactMatch(boolean exactMatch);
+    
+    /**
+     * Sets (as xml) the "exact_match" attribute
+     */
+    void xsetExactMatch(org.apache.xmlbeans.XmlBoolean exactMatch);
+    
+    /**
+     * Unsets the "exact_match" attribute
+     */
+    void unsetExactMatch();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML newInstance() {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML 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.apache.uima.tools.cfe.config.xmlBeans.BitsetFeatureValuesXML) 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
+    }
+}

Added: incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/CFEConfigDocument.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/CFEConfigDocument.java?rev=786255&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/CFEConfigDocument.java (added)
+++ incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/CFEConfigDocument.java Thu Jun 18 20:39:50 2009
@@ -0,0 +1,112 @@
+/*
+ * An XML document type.
+ * Localname: CFEConfig
+ * Namespace: http://www.apache.org/uima/cfe/config/XMLBeans
+ * Java type: org.apache.uima.cfe.config.xmlBeans.CFEConfigDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.uima.tools.cfe.config.xmlBeans;
+
+
+/**
+ * A document containing one CFEConfig(@http://www.apache.org/uima/cfe/config/XMLBeans) element.
+ *
+ * This is a complex type.
+ */
+public interface CFEConfigDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
+        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CFEConfigDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s6153DD1BF87A9430F8A6FA57AFB2FDD7").resolveHandle("cfeconfig397cdoctype");
+    
+    /**
+     * Gets the "CFEConfig" element
+     */
+    org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML getCFEConfig();
+    
+    /**
+     * Sets the "CFEConfig" element
+     */
+    void setCFEConfig(org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML cfeConfig);
+    
+    /**
+     * Appends and returns a new empty "CFEConfig" element
+     */
+    org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML addNewCFEConfig();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument newInstance() {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument 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.apache.uima.tools.cfe.config.xmlBeans.CFEConfigDocument) 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
+    }
+}

Added: incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/CFEDescriptorXML.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/CFEDescriptorXML.java?rev=786255&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/CFEDescriptorXML.java (added)
+++ incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/CFEDescriptorXML.java Thu Jun 18 20:39:50 2009
@@ -0,0 +1,166 @@
+/*
+ * XML Type:  CFEDescriptorXML
+ * Namespace: http://www.apache.org/uima/cfe/config/XMLBeans
+ * Java type: org.apache.uima.cfe.config.xmlBeans.CFEDescriptorXML
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.uima.tools.cfe.config.xmlBeans;
+
+
+/**
+ * An XML CFEDescriptorXML(@http://www.apache.org/uima/cfe/config/XMLBeans).
+ *
+ * This is a complex type.
+ */
+public interface CFEDescriptorXML extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
+        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(CFEDescriptorXML.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s6153DD1BF87A9430F8A6FA57AFB2FDD7").resolveHandle("cfedescriptorxmle158type");
+    
+    /**
+     * Gets array of all "targetAnnotations" elements
+     */
+    org.apache.uima.tools.cfe.config.xmlBeans.TargetAnnotationXML[] getTargetAnnotationsArray();
+    
+    /**
+     * Gets ith "targetAnnotations" element
+     */
+    org.apache.uima.tools.cfe.config.xmlBeans.TargetAnnotationXML getTargetAnnotationsArray(int i);
+    
+    /**
+     * Returns number of "targetAnnotations" element
+     */
+    int sizeOfTargetAnnotationsArray();
+    
+    /**
+     * Sets array of all "targetAnnotations" element
+     */
+    void setTargetAnnotationsArray(org.apache.uima.tools.cfe.config.xmlBeans.TargetAnnotationXML[] targetAnnotationsArray);
+    
+    /**
+     * Sets ith "targetAnnotations" element
+     */
+    void setTargetAnnotationsArray(int i, org.apache.uima.tools.cfe.config.xmlBeans.TargetAnnotationXML targetAnnotations);
+    
+    /**
+     * Inserts and returns a new empty value (as xml) as the ith "targetAnnotations" element
+     */
+    org.apache.uima.tools.cfe.config.xmlBeans.TargetAnnotationXML insertNewTargetAnnotations(int i);
+    
+    /**
+     * Appends and returns a new empty value (as xml) as the last "targetAnnotations" element
+     */
+    org.apache.uima.tools.cfe.config.xmlBeans.TargetAnnotationXML addNewTargetAnnotations();
+    
+    /**
+     * Removes the ith "targetAnnotations" element
+     */
+    void removeTargetAnnotations(int i);
+    
+    /**
+     * Gets the "nullValueImage" attribute
+     */
+    java.lang.String getNullValueImage();
+    
+    /**
+     * Gets (as xml) the "nullValueImage" attribute
+     */
+    org.apache.xmlbeans.XmlString xgetNullValueImage();
+    
+    /**
+     * True if has "nullValueImage" attribute
+     */
+    boolean isSetNullValueImage();
+    
+    /**
+     * Sets the "nullValueImage" attribute
+     */
+    void setNullValueImage(java.lang.String nullValueImage);
+    
+    /**
+     * Sets (as xml) the "nullValueImage" attribute
+     */
+    void xsetNullValueImage(org.apache.xmlbeans.XmlString nullValueImage);
+    
+    /**
+     * Unsets the "nullValueImage" attribute
+     */
+    void unsetNullValueImage();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML newInstance() {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML 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.apache.uima.tools.cfe.config.xmlBeans.CFEDescriptorXML) 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
+    }
+}

Added: incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/EnumFeatureValuesXML.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/EnumFeatureValuesXML.java?rev=786255&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/EnumFeatureValuesXML.java (added)
+++ incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/EnumFeatureValuesXML.java Thu Jun 18 20:39:50 2009
@@ -0,0 +1,196 @@
+/*
+ * XML Type:  EnumFeatureValuesXML
+ * Namespace: http://www.apache.org/uima/cfe/config/XMLBeans
+ * Java type: org.apache.uima.cfe.config.xmlBeans.EnumFeatureValuesXML
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.uima.tools.cfe.config.xmlBeans;
+
+
+/**
+ * An XML EnumFeatureValuesXML(@http://www.apache.org/uima/cfe/config/XMLBeans).
+ *
+ * This is a complex type.
+ */
+public interface EnumFeatureValuesXML extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
+        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(EnumFeatureValuesXML.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s6153DD1BF87A9430F8A6FA57AFB2FDD7").resolveHandle("enumfeaturevaluesxmlbf1etype");
+    
+    /**
+     * Gets array of all "values" elements
+     */
+    java.lang.String[] getValuesArray();
+    
+    /**
+     * Gets ith "values" element
+     */
+    java.lang.String getValuesArray(int i);
+    
+    /**
+     * Gets (as xml) array of all "values" elements
+     */
+    org.apache.xmlbeans.XmlString[] xgetValuesArray();
+    
+    /**
+     * Gets (as xml) ith "values" element
+     */
+    org.apache.xmlbeans.XmlString xgetValuesArray(int i);
+    
+    /**
+     * Returns number of "values" element
+     */
+    int sizeOfValuesArray();
+    
+    /**
+     * Sets array of all "values" element
+     */
+    void setValuesArray(java.lang.String[] valuesArray);
+    
+    /**
+     * Sets ith "values" element
+     */
+    void setValuesArray(int i, java.lang.String values);
+    
+    /**
+     * Sets (as xml) array of all "values" element
+     */
+    void xsetValuesArray(org.apache.xmlbeans.XmlString[] valuesArray);
+    
+    /**
+     * Sets (as xml) ith "values" element
+     */
+    void xsetValuesArray(int i, org.apache.xmlbeans.XmlString values);
+    
+    /**
+     * Inserts the value as the ith "values" element
+     */
+    void insertValues(int i, java.lang.String values);
+    
+    /**
+     * Appends the value as the last "values" element
+     */
+    void addValues(java.lang.String values);
+    
+    /**
+     * Inserts and returns a new empty value (as xml) as the ith "values" element
+     */
+    org.apache.xmlbeans.XmlString insertNewValues(int i);
+    
+    /**
+     * Appends and returns a new empty value (as xml) as the last "values" element
+     */
+    org.apache.xmlbeans.XmlString addNewValues();
+    
+    /**
+     * Removes the ith "values" element
+     */
+    void removeValues(int i);
+    
+    /**
+     * Gets the "caseSensitive" attribute
+     */
+    boolean getCaseSensitive();
+    
+    /**
+     * Gets (as xml) the "caseSensitive" attribute
+     */
+    org.apache.xmlbeans.XmlBoolean xgetCaseSensitive();
+    
+    /**
+     * True if has "caseSensitive" attribute
+     */
+    boolean isSetCaseSensitive();
+    
+    /**
+     * Sets the "caseSensitive" attribute
+     */
+    void setCaseSensitive(boolean caseSensitive);
+    
+    /**
+     * Sets (as xml) the "caseSensitive" attribute
+     */
+    void xsetCaseSensitive(org.apache.xmlbeans.XmlBoolean caseSensitive);
+    
+    /**
+     * Unsets the "caseSensitive" attribute
+     */
+    void unsetCaseSensitive();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML newInstance() {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML 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.apache.uima.tools.cfe.config.xmlBeans.EnumFeatureValuesXML) 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
+    }
+}

Added: incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/FeatureObjectMatcherXML.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/FeatureObjectMatcherXML.java?rev=786255&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/FeatureObjectMatcherXML.java (added)
+++ incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/FeatureObjectMatcherXML.java Thu Jun 18 20:39:50 2009
@@ -0,0 +1,306 @@
+/*
+ * XML Type:  FeatureObjectMatcherXML
+ * Namespace: http://www.apache.org/uima/cfe/config/XMLBeans
+ * Java type: org.apache.uima.cfe.config.xmlBeans.FeatureObjectMatcherXML
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.uima.tools.cfe.config.xmlBeans;
+
+
+/**
+ * An XML FeatureObjectMatcherXML(@http://www.apache.org/uima/cfe/config/XMLBeans).
+ *
+ * This is a complex type.
+ */
+public interface FeatureObjectMatcherXML extends org.apache.uima.tools.cfe.config.xmlBeans.PartialObjectMatcherXML
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
+        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(FeatureObjectMatcherXML.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s6153DD1BF87A9430F8A6FA57AFB2FDD7").resolveHandle("featureobjectmatcherxml79f6type");
+    
+    /**
+     * Gets the "windowsizeLeft" attribute
+     */
+    int getWindowsizeLeft();
+    
+    /**
+     * Gets (as xml) the "windowsizeLeft" attribute
+     */
+    org.apache.xmlbeans.XmlInt xgetWindowsizeLeft();
+    
+    /**
+     * True if has "windowsizeLeft" attribute
+     */
+    boolean isSetWindowsizeLeft();
+    
+    /**
+     * Sets the "windowsizeLeft" attribute
+     */
+    void setWindowsizeLeft(int windowsizeLeft);
+    
+    /**
+     * Sets (as xml) the "windowsizeLeft" attribute
+     */
+    void xsetWindowsizeLeft(org.apache.xmlbeans.XmlInt windowsizeLeft);
+    
+    /**
+     * Unsets the "windowsizeLeft" attribute
+     */
+    void unsetWindowsizeLeft();
+    
+    /**
+     * Gets the "windowsizeInside" attribute
+     */
+    int getWindowsizeInside();
+    
+    /**
+     * Gets (as xml) the "windowsizeInside" attribute
+     */
+    org.apache.xmlbeans.XmlInt xgetWindowsizeInside();
+    
+    /**
+     * True if has "windowsizeInside" attribute
+     */
+    boolean isSetWindowsizeInside();
+    
+    /**
+     * Sets the "windowsizeInside" attribute
+     */
+    void setWindowsizeInside(int windowsizeInside);
+    
+    /**
+     * Sets (as xml) the "windowsizeInside" attribute
+     */
+    void xsetWindowsizeInside(org.apache.xmlbeans.XmlInt windowsizeInside);
+    
+    /**
+     * Unsets the "windowsizeInside" attribute
+     */
+    void unsetWindowsizeInside();
+    
+    /**
+     * Gets the "windowsizeRight" attribute
+     */
+    int getWindowsizeRight();
+    
+    /**
+     * Gets (as xml) the "windowsizeRight" attribute
+     */
+    org.apache.xmlbeans.XmlInt xgetWindowsizeRight();
+    
+    /**
+     * True if has "windowsizeRight" attribute
+     */
+    boolean isSetWindowsizeRight();
+    
+    /**
+     * Sets the "windowsizeRight" attribute
+     */
+    void setWindowsizeRight(int windowsizeRight);
+    
+    /**
+     * Sets (as xml) the "windowsizeRight" attribute
+     */
+    void xsetWindowsizeRight(org.apache.xmlbeans.XmlInt windowsizeRight);
+    
+    /**
+     * Unsets the "windowsizeRight" attribute
+     */
+    void unsetWindowsizeRight();
+    
+    /**
+     * Gets the "windowsizeEnclosed" attribute
+     */
+    int getWindowsizeEnclosed();
+    
+    /**
+     * Gets (as xml) the "windowsizeEnclosed" attribute
+     */
+    org.apache.xmlbeans.XmlInt xgetWindowsizeEnclosed();
+    
+    /**
+     * True if has "windowsizeEnclosed" attribute
+     */
+    boolean isSetWindowsizeEnclosed();
+    
+    /**
+     * Sets the "windowsizeEnclosed" attribute
+     */
+    void setWindowsizeEnclosed(int windowsizeEnclosed);
+    
+    /**
+     * Sets (as xml) the "windowsizeEnclosed" attribute
+     */
+    void xsetWindowsizeEnclosed(org.apache.xmlbeans.XmlInt windowsizeEnclosed);
+    
+    /**
+     * Unsets the "windowsizeEnclosed" attribute
+     */
+    void unsetWindowsizeEnclosed();
+    
+    /**
+     * Gets the "windowFlags" attribute
+     */
+    int getWindowFlags();
+    
+    /**
+     * Gets (as xml) the "windowFlags" attribute
+     */
+    org.apache.xmlbeans.XmlInt xgetWindowFlags();
+    
+    /**
+     * True if has "windowFlags" attribute
+     */
+    boolean isSetWindowFlags();
+    
+    /**
+     * Sets the "windowFlags" attribute
+     */
+    void setWindowFlags(int windowFlags);
+    
+    /**
+     * Sets (as xml) the "windowFlags" attribute
+     */
+    void xsetWindowFlags(org.apache.xmlbeans.XmlInt windowFlags);
+    
+    /**
+     * Unsets the "windowFlags" attribute
+     */
+    void unsetWindowFlags();
+    
+    /**
+     * Gets the "orientation" attribute
+     */
+    boolean getOrientation();
+    
+    /**
+     * Gets (as xml) the "orientation" attribute
+     */
+    org.apache.xmlbeans.XmlBoolean xgetOrientation();
+    
+    /**
+     * True if has "orientation" attribute
+     */
+    boolean isSetOrientation();
+    
+    /**
+     * Sets the "orientation" attribute
+     */
+    void setOrientation(boolean orientation);
+    
+    /**
+     * Sets (as xml) the "orientation" attribute
+     */
+    void xsetOrientation(org.apache.xmlbeans.XmlBoolean orientation);
+    
+    /**
+     * Unsets the "orientation" attribute
+     */
+    void unsetOrientation();
+    
+    /**
+     * Gets the "distance" attribute
+     */
+    boolean getDistance();
+    
+    /**
+     * Gets (as xml) the "distance" attribute
+     */
+    org.apache.xmlbeans.XmlBoolean xgetDistance();
+    
+    /**
+     * True if has "distance" attribute
+     */
+    boolean isSetDistance();
+    
+    /**
+     * Sets the "distance" attribute
+     */
+    void setDistance(boolean distance);
+    
+    /**
+     * Sets (as xml) the "distance" attribute
+     */
+    void xsetDistance(org.apache.xmlbeans.XmlBoolean distance);
+    
+    /**
+     * Unsets the "distance" attribute
+     */
+    void unsetDistance();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML newInstance() {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML 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.apache.uima.tools.cfe.config.xmlBeans.FeatureObjectMatcherXML) 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
+    }
+}

Added: incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/GroupFeatureMatcherXML.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/GroupFeatureMatcherXML.java?rev=786255&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/GroupFeatureMatcherXML.java (added)
+++ incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/GroupFeatureMatcherXML.java Thu Jun 18 20:39:50 2009
@@ -0,0 +1,166 @@
+/*
+ * XML Type:  GroupFeatureMatcherXML
+ * Namespace: http://www.apache.org/uima/cfe/config/XMLBeans
+ * Java type: org.apache.uima.cfe.config.xmlBeans.GroupFeatureMatcherXML
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.uima.tools.cfe.config.xmlBeans;
+
+
+/**
+ * An XML GroupFeatureMatcherXML(@http://www.apache.org/uima/cfe/config/XMLBeans).
+ *
+ * This is a complex type.
+ */
+public interface GroupFeatureMatcherXML extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
+        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(GroupFeatureMatcherXML.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s6153DD1BF87A9430F8A6FA57AFB2FDD7").resolveHandle("groupfeaturematcherxml81e2type");
+    
+    /**
+     * Gets array of all "featureMatchers" elements
+     */
+    org.apache.uima.tools.cfe.config.xmlBeans.SingleFeatureMatcherXML[] getFeatureMatchersArray();
+    
+    /**
+     * Gets ith "featureMatchers" element
+     */
+    org.apache.uima.tools.cfe.config.xmlBeans.SingleFeatureMatcherXML getFeatureMatchersArray(int i);
+    
+    /**
+     * Returns number of "featureMatchers" element
+     */
+    int sizeOfFeatureMatchersArray();
+    
+    /**
+     * Sets array of all "featureMatchers" element
+     */
+    void setFeatureMatchersArray(org.apache.uima.tools.cfe.config.xmlBeans.SingleFeatureMatcherXML[] featureMatchersArray);
+    
+    /**
+     * Sets ith "featureMatchers" element
+     */
+    void setFeatureMatchersArray(int i, org.apache.uima.tools.cfe.config.xmlBeans.SingleFeatureMatcherXML featureMatchers);
+    
+    /**
+     * Inserts and returns a new empty value (as xml) as the ith "featureMatchers" element
+     */
+    org.apache.uima.tools.cfe.config.xmlBeans.SingleFeatureMatcherXML insertNewFeatureMatchers(int i);
+    
+    /**
+     * Appends and returns a new empty value (as xml) as the last "featureMatchers" element
+     */
+    org.apache.uima.tools.cfe.config.xmlBeans.SingleFeatureMatcherXML addNewFeatureMatchers();
+    
+    /**
+     * Removes the ith "featureMatchers" element
+     */
+    void removeFeatureMatchers(int i);
+    
+    /**
+     * Gets the "exclude" element
+     */
+    boolean getExclude();
+    
+    /**
+     * Gets (as xml) the "exclude" element
+     */
+    org.apache.xmlbeans.XmlBoolean xgetExclude();
+    
+    /**
+     * True if has "exclude" element
+     */
+    boolean isSetExclude();
+    
+    /**
+     * Sets the "exclude" element
+     */
+    void setExclude(boolean exclude);
+    
+    /**
+     * Sets (as xml) the "exclude" element
+     */
+    void xsetExclude(org.apache.xmlbeans.XmlBoolean exclude);
+    
+    /**
+     * Unsets the "exclude" element
+     */
+    void unsetExclude();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML newInstance() {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML 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.apache.uima.tools.cfe.config.xmlBeans.GroupFeatureMatcherXML) 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
+    }
+}

Added: incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/ObjectPathFeatureValuesXML.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/ObjectPathFeatureValuesXML.java?rev=786255&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/ObjectPathFeatureValuesXML.java (added)
+++ incubator/uima/sandbox/trunk/ConfigurableFeatureExtractor/src/main/java/org/apache/uima/tools/cfe/config/xmlBeans/ObjectPathFeatureValuesXML.java Thu Jun 18 20:39:50 2009
@@ -0,0 +1,116 @@
+/*
+ * XML Type:  ObjectPathFeatureValuesXML
+ * Namespace: http://www.apache.org/uima/cfe/config/XMLBeans
+ * Java type: org.apache.uima.cfe.config.xmlBeans.ObjectPathFeatureValuesXML
+ *
+ * Automatically generated - do not modify.
+ */
+package org.apache.uima.tools.cfe.config.xmlBeans;
+
+
+/**
+ * An XML ObjectPathFeatureValuesXML(@http://www.apache.org/uima/cfe/config/XMLBeans).
+ *
+ * This is a complex type.
+ */
+public interface ObjectPathFeatureValuesXML extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
+        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ObjectPathFeatureValuesXML.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s6153DD1BF87A9430F8A6FA57AFB2FDD7").resolveHandle("objectpathfeaturevaluesxml7e7btype");
+    
+    /**
+     * Gets the "objectPath" attribute
+     */
+    java.lang.String getObjectPath();
+    
+    /**
+     * Gets (as xml) the "objectPath" attribute
+     */
+    org.apache.xmlbeans.XmlString xgetObjectPath();
+    
+    /**
+     * Sets the "objectPath" attribute
+     */
+    void setObjectPath(java.lang.String objectPath);
+    
+    /**
+     * Sets (as xml) the "objectPath" attribute
+     */
+    void xsetObjectPath(org.apache.xmlbeans.XmlString objectPath);
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML newInstance() {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML 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.apache.uima.tools.cfe.config.xmlBeans.ObjectPathFeatureValuesXML) 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
+    }
+}