< prev index next >

src/com/sun/org/apache/xerces/internal/parsers/StandardParserConfiguration.java

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


  47  *  <li>http://apache.org/xml/features/validation/schema</li>
  48  *  <li>http://apache.org/xml/features/validation/schema-full-checking</li>
  49  *  <li>http://apache.org/xml/features/validation/schema/normalized-value</li>
  50  *  <li>http://apache.org/xml/features/validation/schema/element-default</li>
  51  *  </ul>
  52  * <li>Properties
  53  *  <ul>
  54  *   <li>http://apache.org/xml/properties/internal/error-reporter</li>
  55  *   <li>http://apache.org/xml/properties/internal/entity-manager</li>
  56  *   <li>http://apache.org/xml/properties/internal/document-scanner</li>
  57  *   <li>http://apache.org/xml/properties/internal/dtd-scanner</li>
  58  *   <li>http://apache.org/xml/properties/internal/grammar-pool</li>
  59  *   <li>http://apache.org/xml/properties/internal/validator/dtd</li>
  60  *   <li>http://apache.org/xml/properties/internal/datatype-validator-factory</li>
  61  *  </ul>
  62  * </ul>
  63  *
  64  * @author Arnaud  Le Hors, IBM
  65  * @author Andy Clark, IBM
  66  *
  67  * @version $Id: StandardParserConfiguration.java,v 1.7 2010-11-01 04:40:10 joehw Exp $
  68  */
  69 public class StandardParserConfiguration
  70     extends DTDConfiguration {
  71 
  72     //
  73     // Constants
  74     //
  75 
  76     // feature identifiers
  77 
  78     /** Feature identifier: expose schema normalized value */
  79     protected static final String NORMALIZE_DATA =
  80     Constants.XERCES_FEATURE_PREFIX + Constants.SCHEMA_NORMALIZED_VALUE;
  81 
  82 
  83     /** Feature identifier: send element default value via characters() */
  84     protected static final String SCHEMA_ELEMENT_DEFAULT =
  85     Constants.XERCES_FEATURE_PREFIX + Constants.SCHEMA_ELEMENT_DEFAULT;
  86 
  87 




  47  *  <li>http://apache.org/xml/features/validation/schema</li>
  48  *  <li>http://apache.org/xml/features/validation/schema-full-checking</li>
  49  *  <li>http://apache.org/xml/features/validation/schema/normalized-value</li>
  50  *  <li>http://apache.org/xml/features/validation/schema/element-default</li>
  51  *  </ul>
  52  * <li>Properties
  53  *  <ul>
  54  *   <li>http://apache.org/xml/properties/internal/error-reporter</li>
  55  *   <li>http://apache.org/xml/properties/internal/entity-manager</li>
  56  *   <li>http://apache.org/xml/properties/internal/document-scanner</li>
  57  *   <li>http://apache.org/xml/properties/internal/dtd-scanner</li>
  58  *   <li>http://apache.org/xml/properties/internal/grammar-pool</li>
  59  *   <li>http://apache.org/xml/properties/internal/validator/dtd</li>
  60  *   <li>http://apache.org/xml/properties/internal/datatype-validator-factory</li>
  61  *  </ul>
  62  * </ul>
  63  *
  64  * @author Arnaud  Le Hors, IBM
  65  * @author Andy Clark, IBM
  66  *

  67  */
  68 public class StandardParserConfiguration
  69     extends DTDConfiguration {
  70 
  71     //
  72     // Constants
  73     //
  74 
  75     // feature identifiers
  76 
  77     /** Feature identifier: expose schema normalized value */
  78     protected static final String NORMALIZE_DATA =
  79     Constants.XERCES_FEATURE_PREFIX + Constants.SCHEMA_NORMALIZED_VALUE;
  80 
  81 
  82     /** Feature identifier: send element default value via characters() */
  83     protected static final String SCHEMA_ELEMENT_DEFAULT =
  84     Constants.XERCES_FEATURE_PREFIX + Constants.SCHEMA_ELEMENT_DEFAULT;
  85 
  86 


< prev index next >