Home | History | Annotate | Download | only in processor

Lines Matching refs:FEATURE

84    * <p>State of secure processing feature.</p>
96 /** Static string to be used for incremental feature */
100 /** Static string to be used for optimize feature */
104 /** Static string to be used for source_location feature */
212 * feature.
380 * <p>Set a feature for this <code>TransformerFactory</code> and <code>Transformer</code>s
384 * Feature names are fully qualified {@link java.net.URI}s.
387 * <code>Transformer</code>s or <code>Template</code>s it creates cannot support the feature.
388 * It is possible for an <code>TransformerFactory</code> to expose a feature value but be unable to change its state.
393 * @param name Feature name.
394 * @param value Is feature state <code>true</code> or <code>false</code>.
397 * or the <code>Transformer</code>s or <code>Template</code>s it creates cannot support this feature.
403 // feature name cannot be null
414 // This implementation does not support the setting of a feature other than
415 // the secure processing feature.
426 * Look up the value of a feature.
427 * <p>The feature name is any fully-qualified URI. It is
428 * possible for an TransformerFactory to recognize a feature name but
434 * @param name The feature name, which is a fully-qualified URI.
435 * @return The current state of the feature (true or false).
439 // feature name cannot be null
449 if ((DOMResult.FEATURE == name) || (DOMSource.FEATURE == name)
450 || (SAXResult.FEATURE == name) || (SAXSource.FEATURE == name)
451 || (StreamResult.FEATURE == name)
452 || (StreamSource.FEATURE == name)
453 || (SAXTransformerFactory.FEATURE == name)
456 else if ((DOMResult.FEATURE.equals(name))
457 || (DOMSource.FEATURE.equals(name))
458 || (SAXResult.FEATURE.equals(name))
459 || (SAXSource.FEATURE.equals(name))
460 || (StreamResult.FEATURE.equals(name))
461 || (StreamSource.FEATURE.equals(name))
462 || (SAXTransformerFactory.FEATURE.equals(name))
469 // unknown feature
475 * This feature specifies whether to Optimize stylesheet processing. By
481 * This feature specifies whether the transformation phase should
494 * This feature
550 // Custom Xalan feature: annotate DTM with SAX source locator fields.
614 * @return An XMLFilter object, or null if this feature is not supported.
634 * @return An XMLFilter object, or null if this feature is not supported.
1035 * Return the state of the secure processing feature.
1037 * @return state of the secure processing feature.