类org.w3c.dom.TypeInfo源码实例Demo

下面列出了怎么用org.w3c.dom.TypeInfo的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: jdk1.8-source-analysis   文件: ElementImpl.java
/**
     * Method getSchemaTypeInfo.
     * @return TypeInfo
     */
public TypeInfo getSchemaTypeInfo(){
    if(needsSyncData()) {
        synchronizeData();
    }
    return this;
}
 
private TypeInfo getAttributeType( int index ) {
    checkState(false);
    if( index<0 || fAttributes.getLength()<=index )
        throw new IndexOutOfBoundsException(Integer.toString(index));
    Augmentations augs = fAttributes.getAugmentations(index);
    if (augs == null) return null;
    AttributePSVI psvi = (AttributePSVI)augs.getItem(Constants.ATTRIBUTE_PSVI);
    return getTypeInfoFromPSVI(psvi);
}
 
源代码3 项目: openjdk-jdk8u   文件: ElementImpl.java
/**
     * Method getSchemaTypeInfo.
     * @return TypeInfo
     */
public TypeInfo getSchemaTypeInfo(){
    if(needsSyncData()) {
        synchronizeData();
    }
    return this;
}
 
源代码4 项目: TencentKona-8   文件: ElementImpl.java
/**
     * Method getSchemaTypeInfo.
     * @return TypeInfo
     */
public TypeInfo getSchemaTypeInfo(){
    if(needsSyncData()) {
        synchronizeData();
    }
    return this;
}
 
源代码5 项目: TencentKona-8   文件: ValidatorHandlerImpl.java
private TypeInfo getAttributeType( int index ) {
    checkState(false);
    if( index<0 || fAttributes.getLength()<=index )
        throw new IndexOutOfBoundsException(Integer.toString(index));
    Augmentations augs = fAttributes.getAugmentations(index);
    if (augs == null) return null;
    AttributePSVI psvi = (AttributePSVI)augs.getItem(Constants.ATTRIBUTE_PSVI);
    return getTypeInfoFromPSVI(psvi);
}
 
源代码6 项目: jdk8u60   文件: ElementImpl.java
/**
     * Method getSchemaTypeInfo.
     * @return TypeInfo
     */
public TypeInfo getSchemaTypeInfo(){
    if(needsSyncData()) {
        synchronizeData();
    }
    return this;
}
 
源代码7 项目: jdk8u60   文件: ValidatorHandlerImpl.java
private TypeInfo getAttributeType( int index ) {
    checkState(false);
    if( index<0 || fAttributes.getLength()<=index )
        throw new IndexOutOfBoundsException(Integer.toString(index));
    Augmentations augs = fAttributes.getAugmentations(index);
    if (augs == null) return null;
    AttributePSVI psvi = (AttributePSVI)augs.getItem(Constants.ATTRIBUTE_PSVI);
    return getTypeInfoFromPSVI(psvi);
}
 
源代码8 项目: openjdk-jdk8u   文件: ValidatorHandlerImpl.java
private TypeInfo getAttributeType( int index ) {
    checkState(false);
    if( index<0 || fAttributes.getLength()<=index )
        throw new IndexOutOfBoundsException(Integer.toString(index));
    Augmentations augs = fAttributes.getAugmentations(index);
    if (augs == null) return null;
    AttributePSVI psvi = (AttributePSVI)augs.getItem(Constants.ATTRIBUTE_PSVI);
    return getTypeInfoFromPSVI(psvi);
}
 
public TypeInfo getAttributeTypeInfo(int index) {
    checkState(false);
    return getAttributeType(index);
}
 
public TypeInfo getAttributeTypeInfo(String attributeUri, String attributeLocalName) {
    checkState(false);
    return getAttributeTypeInfo(fAttributes.getIndex(attributeUri,attributeLocalName));
}
 
public TypeInfo getAttributeTypeInfo(String attributeQName) {
    checkState(false);
    return getAttributeTypeInfo(fAttributes.getIndex(attributeQName));
}
 
public TypeInfo getElementTypeInfo() {
    checkState(true);
    if (fElementAugs == null) return null;
    ElementPSVI psvi = (ElementPSVI)fElementAugs.getItem(Constants.ELEMENT_PSVI);
    return getTypeInfoFromPSVI(psvi);
}
 
public TypeInfo getElementTypeInfo() {
    return null;
}
 
public TypeInfo getAttributeTypeInfo(int index) {
    return null;
}
 
public TypeInfo getAttributeTypeInfo(String attributeUri, String attributeLocalName) {
    return null;
}
 
源代码16 项目: lemminx   文件: DOMAttr.java
@Override
public TypeInfo getSchemaTypeInfo() {
	throw new UnsupportedOperationException();
}
 
源代码17 项目: jdk1.8-source-analysis   文件: DTMNodeProxy.java
/**
     * Method getSchemaTypeInfo.
     * @return TypeInfo
     */
@Override
public TypeInfo getSchemaTypeInfo(){
  return null; //PENDING
}
 
源代码18 项目: TencentKona-8   文件: SetAttributeNode.java
public TypeInfo getSchemaTypeInfo() {
    return null;
}
 
源代码19 项目: openjdk-jdk8u   文件: JAXPValidatorComponent.java
public TypeInfo getAttributeTypeInfo(String attributeQName) {
    return null;
}
 
源代码20 项目: TencentKona-8   文件: ValidatorHandlerImpl.java
public TypeInfo getAttributeTypeInfo(int index) {
    checkState(false);
    return getAttributeType(index);
}
 
源代码21 项目: TencentKona-8   文件: ValidatorHandlerImpl.java
public TypeInfo getAttributeTypeInfo(String attributeUri, String attributeLocalName) {
    checkState(false);
    return getAttributeTypeInfo(fAttributes.getIndex(attributeUri,attributeLocalName));
}
 
源代码22 项目: TencentKona-8   文件: ValidatorHandlerImpl.java
public TypeInfo getAttributeTypeInfo(String attributeQName) {
    checkState(false);
    return getAttributeTypeInfo(fAttributes.getIndex(attributeQName));
}
 
源代码23 项目: TencentKona-8   文件: JAXPValidatorComponent.java
public TypeInfo getElementTypeInfo() {
    return null;
}
 
源代码24 项目: TencentKona-8   文件: JAXPValidatorComponent.java
public TypeInfo getAttributeTypeInfo(int index) {
    return null;
}
 
源代码25 项目: TencentKona-8   文件: JAXPValidatorComponent.java
public TypeInfo getAttributeTypeInfo(String attributeQName) {
    return null;
}
 
源代码26 项目: TencentKona-8   文件: JAXPValidatorComponent.java
public TypeInfo getAttributeTypeInfo(String attributeUri, String attributeLocalName) {
    return null;
}
 
源代码27 项目: TencentKona-8   文件: DefaultElement.java
public TypeInfo getSchemaTypeInfo(){
  return null;
}
 
源代码28 项目: TencentKona-8   文件: DTMNodeProxy.java
/**
     * Method getSchemaTypeInfo.
     * @return TypeInfo
     */
@Override
public TypeInfo getSchemaTypeInfo(){
  return null; //PENDING
}
 
源代码29 项目: openjdk-jdk8u   文件: JAXPValidatorComponent.java
public TypeInfo getElementTypeInfo() {
    return null;
}
 
源代码30 项目: jdk8u60   文件: ValidatorHandlerImpl.java
public TypeInfo getAttributeTypeInfo(int index) {
    checkState(false);
    return getAttributeType(index);
}
 
 类所在包
 同包方法