当前位置: 首页>>代码示例>>Java>>正文


Java PropertyState.NOT_SUPPORTED属性代码示例

本文整理汇总了Java中com.sun.org.apache.xerces.internal.util.PropertyState.NOT_SUPPORTED属性的典型用法代码示例。如果您正苦于以下问题:Java PropertyState.NOT_SUPPORTED属性的具体用法?Java PropertyState.NOT_SUPPORTED怎么用?Java PropertyState.NOT_SUPPORTED使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.sun.org.apache.xerces.internal.util.PropertyState的用法示例。


在下文中一共展示了PropertyState.NOT_SUPPORTED属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: checkProperty

/**
 * Check a property. If the property is known and supported, this method
 * simply returns. Otherwise, the appropriate exception is thrown.
 *
 * @param propertyId The unique identifier (URI) of the property
 *                   being set.
 * @exception com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException If the
 *            requested feature is not known or supported.
 */
protected PropertyState checkProperty(String propertyId)
    throws XMLConfigurationException {

    // special cases
    if (propertyId.startsWith(Constants.SAX_PROPERTY_PREFIX)) {
        final int suffixLength = propertyId.length() - Constants.SAX_PROPERTY_PREFIX.length();

        //
        // http://xml.org/sax/properties/xml-string
        // Value type: String
        // Access: read-only
        //   Get the literal string of characters associated with the
        //   current event.  If the parser recognises and supports this
        //   property but is not currently parsing text, it should return
        //   null (this is a good way to check for availability before the
        //   parse begins).
        //
        if (suffixLength == Constants.XML_STRING_PROPERTY.length() &&
            propertyId.endsWith(Constants.XML_STRING_PROPERTY)) {
            // REVISIT - we should probably ask xml-dev for a precise
            // definition of what this is actually supposed to return, and
            // in exactly which circumstances.
            return PropertyState.NOT_SUPPORTED;
        }
    }

    // check property
    return super.checkProperty(propertyId);

}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:39,代码来源:BasicParserConfiguration.java


注:本文中的com.sun.org.apache.xerces.internal.util.PropertyState.NOT_SUPPORTED属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。