< prev index next >

src/com/sun/org/apache/xerces/internal/impl/validation/ValidationState.java

Print this page
rev 2127 : 8048021: Remove @version tag in jaxp repo
Reviewed-by: joehw


  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xerces.internal.impl.validation;
  22 
  23 import com.sun.org.apache.xerces.internal.util.SymbolTable;
  24 import com.sun.org.apache.xerces.internal.impl.dv.ValidationContext;
  25 
  26 import com.sun.org.apache.xerces.internal.xni.NamespaceContext;
  27 import java.util.ArrayList;
  28 import java.util.Locale;
  29 
  30 /**
  31  * Implementation of ValidationContext inteface. Used to establish an
  32  * environment for simple type validation.
  33  *
  34  * @xerces.internal
  35  *
  36  * @author Elena Litani, IBM
  37  * @version $Id: ValidationState.java,v 1.7 2010-11-01 04:39:53 joehw Exp $
  38  */
  39 public class ValidationState implements ValidationContext {
  40 
  41     //
  42     // private data
  43     //
  44     private boolean fExtraChecking              = true;
  45     private boolean fFacetChecking              = true;
  46     private boolean fNormalize                  = true;
  47     private boolean fNamespaces                 = true;
  48 
  49     private EntityState fEntityState            = null;
  50     private NamespaceContext fNamespaceContext  = null;
  51     private SymbolTable fSymbolTable            = null;
  52     private Locale fLocale                      = null;
  53 
  54     private ArrayList<String> fIdList;
  55     private ArrayList<String> fIdRefList;
  56 
  57     //




  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xerces.internal.impl.validation;
  22 
  23 import com.sun.org.apache.xerces.internal.util.SymbolTable;
  24 import com.sun.org.apache.xerces.internal.impl.dv.ValidationContext;
  25 
  26 import com.sun.org.apache.xerces.internal.xni.NamespaceContext;
  27 import java.util.ArrayList;
  28 import java.util.Locale;
  29 
  30 /**
  31  * Implementation of ValidationContext inteface. Used to establish an
  32  * environment for simple type validation.
  33  *
  34  * @xerces.internal
  35  *
  36  * @author Elena Litani, IBM

  37  */
  38 public class ValidationState implements ValidationContext {
  39 
  40     //
  41     // private data
  42     //
  43     private boolean fExtraChecking              = true;
  44     private boolean fFacetChecking              = true;
  45     private boolean fNormalize                  = true;
  46     private boolean fNamespaces                 = true;
  47 
  48     private EntityState fEntityState            = null;
  49     private NamespaceContext fNamespaceContext  = null;
  50     private SymbolTable fSymbolTable            = null;
  51     private Locale fLocale                      = null;
  52 
  53     private ArrayList<String> fIdList;
  54     private ArrayList<String> fIdRefList;
  55 
  56     //


< prev index next >