< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/TransformerImpl.java

Print this page




 143     private URIResolver _uriResolver = null;
 144 
 145     /**
 146      * Output properties of this transformer instance.
 147      */
 148     private Properties _properties, _propertiesClone;
 149 
 150     /**
 151      * A reference to an output handler factory.
 152      */
 153     private TransletOutputHandlerFactory _tohFactory = null;
 154 
 155     /**
 156      * A reference to a internal DOM representation of the input.
 157      */
 158     private DOM _dom = null;
 159 
 160     /**
 161      * Number of indent spaces to add when indentation is on.
 162      */
 163     private int _indentNumber;
 164 
 165     /**
 166      * A reference to the transformer factory that this templates
 167      * object belongs to.
 168      */
 169     private TransformerFactoryImpl _tfactory = null;
 170 
 171     /**
 172      * A reference to the output stream, if we create one in our code.
 173      */
 174     private OutputStream _ostream = null;
 175 
 176     /**
 177      * A reference to the XSLTCDTMManager which is used to build the DOM/DTM
 178      * for this transformer.
 179      */
 180     private XSLTCDTMManager _dtmManager = null;
 181 
 182     /**
 183      * A reference to an object that creates and caches XMLReader objects.


1445                                             e.getMessageAndLocation()));
1446         }
1447     }
1448 
1449     /**
1450      * This method resets  the Transformer to its original configuration
1451      * Transformer code is reset to the same state it was when it was
1452      * created
1453      * @since 1.5
1454      */
1455     @Override
1456     public void reset() {
1457 
1458         _method = null;
1459         _encoding = null;
1460         _sourceSystemId = null;
1461         _errorListener = this;
1462         _uriResolver = null;
1463         _dom = null;
1464         _parameters = null;
1465         _indentNumber = 0;
1466         setOutputProperties (null);
1467         _tohFactory = null;
1468         _ostream = null;
1469 
1470     }
1471 }


 143     private URIResolver _uriResolver = null;
 144 
 145     /**
 146      * Output properties of this transformer instance.
 147      */
 148     private Properties _properties, _propertiesClone;
 149 
 150     /**
 151      * A reference to an output handler factory.
 152      */
 153     private TransletOutputHandlerFactory _tohFactory = null;
 154 
 155     /**
 156      * A reference to a internal DOM representation of the input.
 157      */
 158     private DOM _dom = null;
 159 
 160     /**
 161      * Number of indent spaces to add when indentation is on.
 162      */
 163     private int _indentNumber = -1;
 164 
 165     /**
 166      * A reference to the transformer factory that this templates
 167      * object belongs to.
 168      */
 169     private TransformerFactoryImpl _tfactory = null;
 170 
 171     /**
 172      * A reference to the output stream, if we create one in our code.
 173      */
 174     private OutputStream _ostream = null;
 175 
 176     /**
 177      * A reference to the XSLTCDTMManager which is used to build the DOM/DTM
 178      * for this transformer.
 179      */
 180     private XSLTCDTMManager _dtmManager = null;
 181 
 182     /**
 183      * A reference to an object that creates and caches XMLReader objects.


1445                                             e.getMessageAndLocation()));
1446         }
1447     }
1448 
1449     /**
1450      * This method resets  the Transformer to its original configuration
1451      * Transformer code is reset to the same state it was when it was
1452      * created
1453      * @since 1.5
1454      */
1455     @Override
1456     public void reset() {
1457 
1458         _method = null;
1459         _encoding = null;
1460         _sourceSystemId = null;
1461         _errorListener = this;
1462         _uriResolver = null;
1463         _dom = null;
1464         _parameters = null;
1465         _indentNumber = -1;
1466         setOutputProperties (null);
1467         _tohFactory = null;
1468         _ostream = null;
1469 
1470     }
1471 }
< prev index next >