Lines Matching refs:featureId

1501      * @param featureId The unique identifier (URI) of the feature.
1510 public void setFeature(String featureId, boolean state)
1518 if (featureId.startsWith(Constants.SAX_FEATURE_PREFIX)) {
1519 final int suffixLength = featureId.length() - Constants.SAX_FEATURE_PREFIX.length();
1523 featureId.endsWith(Constants.NAMESPACES_FEATURE)) {
1524 fConfiguration.setFeature(featureId, state);
1536 featureId.endsWith(Constants.NAMESPACE_PREFIXES_FEATURE)) {
1537 fConfiguration.setFeature(featureId, state);
1547 featureId.endsWith(Constants.STRING_INTERNING_FEATURE)) {
1551 "false-not-supported", new Object [] {featureId}));
1561 featureId.endsWith(Constants.LEXICAL_HANDLER_PARAMETER_ENTITIES_FEATURE)) {
1571 featureId.endsWith(Constants.RESOLVE_DTD_URIS_FEATURE)) {
1581 featureId.endsWith(Constants.UNICODE_NORMALIZATION_CHECKING_FEATURE)) {
1587 "true-not-supported", new Object [] {featureId}));
1597 featureId.endsWith(Constants.XMLNS_URIS_FEATURE)) {
1607 featureId.endsWith(Constants.USE_ENTITY_RESOLVER2_FEATURE)) {
1631 featureId.endsWith(Constants.IS_STANDALONE_FEATURE)) ||
1633 featureId.endsWith(Constants.USE_ATTRIBUTES2_FEATURE)) ||
1635 featureId.endsWith(Constants.USE_LOCATOR2_FEATURE)) ||
1637 featureId.endsWith(Constants.XML_11_FEATURE))) {
1640 "feature-read-only", new Object [] {featureId}));
1654 else if (featureId.startsWith(XERCES_FEATURES_PREFIX)) {
1655 String feature = featureId.substring(XERCES_FEATURES_PREFIX.length());
1666 fConfiguration.setFeature(featureId, state);
1690 * @param featureId The unique identifier (URI) of the feature
1698 public boolean getFeature(String featureId)
1706 if (featureId.startsWith(Constants.SAX_FEATURE_PREFIX)) {
1707 final int suffixLength = featureId.length() - Constants.SAX_FEATURE_PREFIX.length();
1716 featureId.endsWith(Constants.NAMESPACE_PREFIXES_FEATURE)) {
1717 boolean state = fConfiguration.getFeature(featureId);
1725 featureId.endsWith(Constants.STRING_INTERNING_FEATURE)) {
1733 featureId.endsWith(Constants.IS_STANDALONE_FEATURE)) {
1741 featureId.endsWith(Constants.XML_11_FEATURE)) {
1750 featureId.endsWith(Constants.LEXICAL_HANDLER_PARAMETER_ENTITIES_FEATURE)) {
1758 featureId.endsWith(Constants.RESOLVE_DTD_URIS_FEATURE)) {
1767 featureId.endsWith(Constants.XMLNS_URIS_FEATURE)) {
1776 featureId.endsWith(Constants.UNICODE_NORMALIZATION_CHECKING_FEATURE)) {
1787 featureId.endsWith(Constants.USE_ENTITY_RESOLVER2_FEATURE)) {
1799 featureId.endsWith(Constants.USE_ATTRIBUTES2_FEATURE)) ||
1801 featureId.endsWith(Constants.USE_LOCATOR2_FEATURE))) {
1816 else if (featureId.startsWith(XERCES_FEATURES_PREFIX)) {
1823 return fConfiguration.getFeature(featureId);