1 22 23 package org.xquark.util; 24 25 29 public interface SAXConstants 30 { 31 32 33 public static final String SAX_NAMESPACE_FEATURE = "http://xml.org/sax/features/namespaces"; 37 public static final String SAX_PREFIX_FEATURE = "http://xml.org/sax/features/namespace-prefixes"; 38 public static final String SAX_VALIDATION_FEATURE = "http://xml.org/sax/features/validation"; 39 public static final String SAX_DECLARATION_PROPERTY = "http://xml.org/sax/properties/declaration-handler"; 40 public static final String SAX_LEXICAL_PROPERTY = "http://xml.org/sax/properties/lexical-handler"; 41 42 public static final String XMLNS_URI = "http://www.w3.org/2000/xmlns/"; 43 public static final String XMLNS_PREFIX = "xmlns"; 44 45 public static final String FRAGMENT_FEATURE = "http://wwww.xquark.org/sax/features/fragment"; 48 public static final String TRACE_FEATURE = "http://wwww.xquark.org/sax/features/trace"; 50 51 52 } 53 | Popular Tags |