631632633634635636637
// this initializes a newly-created serializer private void initSerializer(XMLSerializer ser) { ser.fNSBinder = new NamespaceSupport(); ser.fLocalNSBinder = new NamespaceSupport(); ser.fSymbolTable = new SymbolTable(); }
199200201202203204205206
public void setNamespaces (boolean namespaces){ fNamespaces = namespaces; if (fNSBinder == null) { fNSBinder = new NamespaceSupport(); fLocalNSBinder = new NamespaceSupport(); fSymbolTable = new SymbolTable(); } }
538539540541542543544545546547548
XML_SECURITY_PROPERTY_MANAGER }; addRecognizedProperties(recognizedProperties); if (symbolTable == null) { symbolTable = new SymbolTable(); } fSymbolTable = symbolTable; fProperties.put(SYMBOL_TABLE, fSymbolTable); fGrammarPool = grammarPool;
636637638639640641642
202203204205206207208209
297298299300301302303304305306307
features |= SPLITCDATA; features |= WELLFORMED; features |= NSDECL; if (symbolTable == null) { symbolTable = new SymbolTable(); } fSymbolTable = symbolTable; fComponents = new ArrayList();
101102103104105106107
*/ public XPointerHandler() { super(); fXPointerParts = new Vector(); fSymbolTable = new SymbolTable(); }
232233234235236237238239240241242
ENTITY_RESOLVER, }; addRecognizedProperties(recognizedProperties); if (symbolTable == null) { symbolTable = new SymbolTable(); } fSymbolTable = symbolTable; fProperties.put(SYMBOL_TABLE, fSymbolTable); } // <init>(SymbolTable)
13471348134913501351135213531354135513561357
return; } // get symbol table. if it's a new one, add symbols to it. SymbolTable symbolTable = (SymbolTable) componentManager.getProperty(SYMBOL_TABLE); if (symbolTable != fSymbolTable) { fSymbolTable = symbolTable; } fNamespaceGrowth = componentManager.getFeature(NAMESPACE_GROWTH, false);
115116117118119120121
// Constructors // /** Default constructor. */ public XMLGrammarPreparser() { this(new SymbolTable()); } // <init>()