com.sun.org.apache.xalan.internal.utils.FeatureManager.Feature Java Examples

The following examples show how to use com.sun.org.apache.xalan.internal.utils.FeatureManager.Feature. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: XSLTC.java    From jdk1.8-source-analysis with Apache License 2.0 2 votes vote down vote up
/**
 * Return the value of the specified feature
 * @param name name of the feature
 * @return true if the feature is enabled, false otherwise
 */
public boolean getFeature(Feature name) {
    return _featureManager.isFeatureEnabled(name);
}
 
Example #2
Source File: XSLTC.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Return the value of the specified feature
 * @param name name of the feature
 * @return true if the feature is enabled, false otherwise
 */
public boolean getFeature(Feature name) {
    return _featureManager.isFeatureEnabled(name);
}
 
Example #3
Source File: XSLTC.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Return the value of the specified feature
 * @param name name of the feature
 * @return true if the feature is enabled, false otherwise
 */
public boolean getFeature(Feature name) {
    return _featureManager.isFeatureEnabled(name);
}
 
Example #4
Source File: XSLTC.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Return the value of the specified feature
 * @param name name of the feature
 * @return true if the feature is enabled, false otherwise
 */
public boolean getFeature(Feature name) {
    return _featureManager.isFeatureEnabled(name);
}
 
Example #5
Source File: XSLTC.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Return the value of the specified feature
 * @param name name of the feature
 * @return true if the feature is enabled, false otherwise
 */
public boolean getFeature(Feature name) {
    return _featureManager.isFeatureEnabled(name);
}