Lines Matching refs:state

79     /** Scanner state: XML declaration. */
82 /** Scanner state: prolog. */
85 /** Scanner state: trailing misc. */
88 /** Scanner state: DTD internal declarations. */
91 /** Scanner state: open DTD external subset. */
94 /** Scanner state: DTD external declarations. */
97 /** Scanner state: NO MORE ELEMENTS. */
192 // state
264 /**return the state of the scanner */
377 * Sets the state of a feature. This method is called by the component
378 * manager any time after reset when a feature changes state.
384 * @param state The state of the feature.
391 public void setFeature(String featureId, boolean state)
394 super.setFeature(featureId, state);
402 fLoadExternalDTD = state;
407 fDisallowDoctype = state;
471 * Returns the default state for a feature, or null if this
490 * Returns the default state for a property, or null if this
569 //set the scanner state of SCANNER_STATE_TERMINATED
600 /** return the next state on the input
694 /** Set the scanner state after scanning DTD */
702 /** Returns the scanner state name. */
703 protected String getScannerStateName(int state) {
705 switch (state) {
713 return super.getScannerStateName(state);
812 * Drives the parser to the next state/event on the input. Parser is guaranteed
813 * to stop at the next state/event.
815 * Internally XML document is divided into several states. Each state represents
817 * the section of XML document and returns the state corresponding to section of
819 * can read ahead of the section of document (state returned) just read and
820 * can maintain a different internal state.
822 * @return state representing the section of document just read.
1188 throw new XNIException("DTDDriver#dispatch: scanner state="+fScannerState+" ("+getScannerStateName(fScannerState)+')');
1449 //xxx what to do when the scanner has reached the terminating state.