本文整理汇总了Java中mf.org.apache.xerces.xs.XSObject.getType方法的典型用法代码示例。如果您正苦于以下问题:Java XSObject.getType方法的具体用法?Java XSObject.getType怎么用?Java XSObject.getType使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mf.org.apache.xerces.xs.XSObject
的用法示例。
在下文中一共展示了XSObject.getType方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: expandRelatedComponents
import mf.org.apache.xerces.xs.XSObject; //导入方法依赖的package包/类
private void expandRelatedComponents(XSObject component, Vector componentList, Hashtable dependencies) {
short componentType = component.getType();
switch (componentType) {
case XSConstants.TYPE_DEFINITION :
expandRelatedTypeComponents((XSTypeDefinition) component, componentList, component.getNamespace(), dependencies);
break;
case XSConstants.ATTRIBUTE_DECLARATION :
expandRelatedAttributeComponents((XSAttributeDeclaration) component, componentList, component.getNamespace(), dependencies);
break;
case XSConstants.ATTRIBUTE_GROUP :
expandRelatedAttributeGroupComponents((XSAttributeGroupDefinition) component, componentList, component.getNamespace(), dependencies);
case XSConstants.ELEMENT_DECLARATION :
expandRelatedElementComponents((XSElementDeclaration) component, componentList, component.getNamespace(), dependencies);
break;
case XSConstants.MODEL_GROUP_DEFINITION :
expandRelatedModelGroupDefinitionComponents((XSModelGroupDefinition) component, componentList, component.getNamespace(), dependencies);
case XSConstants.ATTRIBUTE_USE :
//expandRelatedAttributeUseComponents((XSAttributeUse)component, componentList, dependencies);
case XSConstants.NOTATION_DECLARATION :
case XSConstants.IDENTITY_CONSTRAINT :
default :
break;
}
}
示例2: canAddComponent
import mf.org.apache.xerces.xs.XSObject; //导入方法依赖的package包/类
private boolean canAddComponent(XSObject component, XSDDescription desc) {
desc.setNamespace(component.getNamespace());
final SchemaGrammar sg = findGrammar(desc, false);
if (sg == null) {
return true;
}
else if (sg.isImmutable()) {
return false;
}
short componentType = component.getType();
final String name = component.getName();
switch (componentType) {
case XSConstants.TYPE_DEFINITION :
if (sg.getGlobalTypeDecl(name) == component) {
return true;
}
break;
case XSConstants.ATTRIBUTE_DECLARATION :
if (sg.getGlobalAttributeDecl(name) == component) {
return true;
}
break;
case XSConstants.ATTRIBUTE_GROUP :
if (sg.getGlobalAttributeDecl(name) == component) {
return true;
}
break;
case XSConstants.ELEMENT_DECLARATION :
if (sg.getGlobalElementDecl(name) == component) {
return true;
}
break;
case XSConstants.MODEL_GROUP_DEFINITION :
if (sg.getGlobalGroupDecl(name) == component) {
return true;
}
break;
case XSConstants.NOTATION_DECLARATION :
if (sg.getGlobalNotationDecl(name) == component) {
return true;
}
break;
case XSConstants.IDENTITY_CONSTRAINT :
case XSConstants.ATTRIBUTE_USE :
default :
return true;
}
return false;
}
示例3: addGlobalComponent
import mf.org.apache.xerces.xs.XSObject; //导入方法依赖的package包/类
private void addGlobalComponent(XSObject component, XSDDescription desc) {
final String namespace = component.getNamespace();
desc.setNamespace(namespace);
final SchemaGrammar sg = getSchemaGrammar(desc);
short componentType = component.getType();
final String name = component.getName();
switch (componentType) {
case XSConstants.TYPE_DEFINITION :
if (!((XSTypeDefinition) component).getAnonymous()) {
if (sg.getGlobalTypeDecl(name) == null) {
sg.addGlobalTypeDecl((XSTypeDefinition) component);
}
// store the declaration in the extended map, using an empty location
if (sg.getGlobalTypeDecl(name, "") == null) {
sg.addGlobalTypeDecl((XSTypeDefinition) component, "");
}
}
break;
case XSConstants.ATTRIBUTE_DECLARATION :
if (((XSAttributeDecl) component).getScope() == XSAttributeDecl.SCOPE_GLOBAL) {
if (sg.getGlobalAttributeDecl(name) == null) {
sg.addGlobalAttributeDecl((XSAttributeDecl) component);
}
// store the declaration in the extended map, using an empty location
if (sg.getGlobalAttributeDecl(name, "") == null) {
sg.addGlobalAttributeDecl((XSAttributeDecl) component, "");
}
}
break;
case XSConstants.ATTRIBUTE_GROUP :
if (sg.getGlobalAttributeDecl(name) == null) {
sg.addGlobalAttributeGroupDecl((XSAttributeGroupDecl) component);
}
// store the declaration in the extended map, using an empty location
if (sg.getGlobalAttributeDecl(name, "") == null) {
sg.addGlobalAttributeGroupDecl((XSAttributeGroupDecl) component, "");
}
break;
case XSConstants.ELEMENT_DECLARATION :
if (((XSElementDecl) component).getScope() == XSElementDecl.SCOPE_GLOBAL) {
sg.addGlobalElementDeclAll((XSElementDecl) component);
if (sg.getGlobalElementDecl(name) == null) {
sg.addGlobalElementDecl((XSElementDecl) component);
}
// store the declaration in the extended map, using an empty location
if (sg.getGlobalElementDecl(name, "") == null) {
sg.addGlobalElementDecl((XSElementDecl) component, "");
}
}
break;
case XSConstants.MODEL_GROUP_DEFINITION :
if (sg.getGlobalGroupDecl(name) == null) {
sg.addGlobalGroupDecl((XSGroupDecl) component);
}
// store the declaration in the extended map, using an empty location
if (sg.getGlobalGroupDecl(name, "") == null) {
sg.addGlobalGroupDecl((XSGroupDecl) component, "");
}
break;
case XSConstants.NOTATION_DECLARATION :
if (sg.getGlobalNotationDecl(name) == null) {
sg.addGlobalNotationDecl((XSNotationDecl) component);
}
// store the declaration in the extended map, using an empty location
if (sg.getGlobalNotationDecl(name, "") == null) {
sg.addGlobalNotationDecl((XSNotationDecl) component, "");
}
break;
case XSConstants.IDENTITY_CONSTRAINT :
case XSConstants.ATTRIBUTE_USE :
default :
break;
}
}