本文整理汇总了Java中mf.org.apache.xerces.xs.XSNamedMap.getLength方法的典型用法代码示例。如果您正苦于以下问题:Java XSNamedMap.getLength方法的具体用法?Java XSNamedMap.getLength怎么用?Java XSNamedMap.getLength使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mf.org.apache.xerces.xs.XSNamedMap
的用法示例。
在下文中一共展示了XSNamedMap.getLength方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: buildSubGroups_Org
import mf.org.apache.xerces.xs.XSNamedMap; //导入方法依赖的package包/类
private SymbolHash buildSubGroups_Org() {
SubstitutionGroupHandler sgHandler = new SubstitutionGroupHandler(null);
for (int i = 0 ; i < fGrammarCount; i++) {
sgHandler.addSubstitutionGroup(fGrammarList[i].getSubstitutionGroups());
}
final XSNamedMap elements = getComponents(XSConstants.ELEMENT_DECLARATION);
final int len = elements.getLength();
final SymbolHash subGroupMap = new SymbolHash(len*2);
XSElementDecl head;
XSElementDeclaration[] subGroup;
for (int i = 0; i < len; i++) {
head = (XSElementDecl)elements.item(i);
subGroup = sgHandler.getSubstitutionGroup(head);
subGroupMap.put(head, subGroup.length > 0 ?
new XSObjectListImpl(subGroup, subGroup.length) : XSObjectListImpl.EMPTY_LIST);
}
return subGroupMap;
}
示例2: addGlobalElementDecls
import mf.org.apache.xerces.xs.XSNamedMap; //导入方法依赖的package包/类
private void addGlobalElementDecls(SchemaGrammar srcGrammar, SchemaGrammar dstGrammar) {
XSNamedMap components = srcGrammar.getComponents(XSConstants.ELEMENT_DECLARATION);
int len = components.getLength();
XSElementDecl srcDecl, dstDecl;
// add global components
for (int i=0; i<len; i++) {
srcDecl = (XSElementDecl) components.item(i);
dstDecl = dstGrammar.getGlobalElementDecl(srcDecl.getName());
if (dstDecl == null) {
dstGrammar.addGlobalElementDecl(srcDecl);
}
else if (dstDecl != srcDecl){
// TODO: if not tolerating duplicate, generate an error message
}
}
// add any extended (duplicate) global components
ObjectList componentsExt = srcGrammar.getComponentsExt(XSConstants.ELEMENT_DECLARATION);
len = componentsExt.getLength();
for (int i=0; i<len; i+= 2) {
final String key = (String) componentsExt.item(i);
final int index = key.indexOf(',');
final String location = key.substring(0, index);
final String name = key.substring(index + 1, key.length());
srcDecl = (XSElementDecl)componentsExt.item(i+1);
dstDecl = dstGrammar.getGlobalElementDecl(name, location);
if ( dstDecl == null) {
dstGrammar.addGlobalElementDecl(srcDecl, location);
}
else if (dstDecl != srcDecl){
// TODO: if not tolerating duplicate, generate an error message
}
}
}
示例3: addGlobalAttributeDecls
import mf.org.apache.xerces.xs.XSNamedMap; //导入方法依赖的package包/类
private void addGlobalAttributeDecls(SchemaGrammar srcGrammar, SchemaGrammar dstGrammar) {
XSNamedMap components = srcGrammar.getComponents(XSConstants.ATTRIBUTE_DECLARATION);
int len = components.getLength();
XSAttributeDecl srcDecl, dstDecl;
// add global components
for (int i=0; i<len; i++) {
srcDecl = (XSAttributeDecl) components.item(i);
dstDecl = dstGrammar.getGlobalAttributeDecl(srcDecl.getName());
if (dstDecl == null) {
dstGrammar.addGlobalAttributeDecl(srcDecl);
}
else if (dstDecl != srcDecl && !fTolerateDuplicates) {
reportSharingError(srcDecl.getNamespace(), srcDecl.getName());
}
}
// add any extended (duplicate) global components
ObjectList componentsExt = srcGrammar.getComponentsExt(XSConstants.ATTRIBUTE_DECLARATION);
len = componentsExt.getLength();
for (int i=0; i<len; i+= 2) {
final String key = (String) componentsExt.item(i);
final int index = key.indexOf(',');
final String location = key.substring(0, index);
final String name = key.substring(index + 1, key.length());
srcDecl = (XSAttributeDecl)componentsExt.item(i+1);
dstDecl = dstGrammar.getGlobalAttributeDecl(name, location);
if (dstDecl == null) {
dstGrammar.addGlobalAttributeDecl(srcDecl, location);
}
// REVISIT - do we report an error?
else if (dstDecl != srcDecl) {
}
}
}
示例4: addGlobalAttributeGroupDecls
import mf.org.apache.xerces.xs.XSNamedMap; //导入方法依赖的package包/类
private void addGlobalAttributeGroupDecls(SchemaGrammar srcGrammar, SchemaGrammar dstGrammar) {
XSNamedMap components = srcGrammar.getComponents(XSConstants.ATTRIBUTE_GROUP);
int len = components.getLength();
XSAttributeGroupDecl srcDecl, dstDecl;
// add global components
for (int i=0; i<len; i++) {
srcDecl = (XSAttributeGroupDecl) components.item(i);
dstDecl = dstGrammar.getGlobalAttributeGroupDecl(srcDecl.getName());
if (dstDecl == null) {
dstGrammar.addGlobalAttributeGroupDecl(srcDecl);
}
else if (dstDecl != srcDecl && !fTolerateDuplicates) {
reportSharingError(srcDecl.getNamespace(), srcDecl.getName());
}
}
// add any extended (duplicate) global components
ObjectList componentsExt = srcGrammar.getComponentsExt(XSConstants.ATTRIBUTE_GROUP);
len = componentsExt.getLength();
for (int i=0; i<len; i+= 2) {
final String key = (String) componentsExt.item(i);
final int index = key.indexOf(',');
final String location = key.substring(0, index);
final String name = key.substring(index + 1, key.length());
srcDecl = (XSAttributeGroupDecl)componentsExt.item(i+1);
dstDecl = dstGrammar.getGlobalAttributeGroupDecl(name, location);
if (dstDecl == null) {
dstGrammar.addGlobalAttributeGroupDecl(srcDecl, location);
}
// REVISIT - do we report an error?
else if (dstDecl != srcDecl) {
}
}
}
示例5: addGlobalNotationDecls
import mf.org.apache.xerces.xs.XSNamedMap; //导入方法依赖的package包/类
private void addGlobalNotationDecls(SchemaGrammar srcGrammar, SchemaGrammar dstGrammar) {
XSNamedMap components = srcGrammar.getComponents(XSConstants.NOTATION_DECLARATION);
int len = components.getLength();
XSNotationDecl srcDecl, dstDecl;
// add global components
for (int i=0; i<len; i++) {
srcDecl = (XSNotationDecl) components.item(i);
dstDecl = dstGrammar.getGlobalNotationDecl(srcDecl.getName());
if (dstDecl == null) {
dstGrammar.addGlobalNotationDecl(srcDecl);
}
else if (dstDecl != srcDecl && !fTolerateDuplicates) {
reportSharingError(srcDecl.getNamespace(), srcDecl.getName());
}
}
// add any extended (duplicate) global components
ObjectList componentsExt = srcGrammar.getComponentsExt(XSConstants.NOTATION_DECLARATION);
len = componentsExt.getLength();
for (int i=0; i<len; i+= 2) {
final String key = (String) componentsExt.item(i);
final int index = key.indexOf(',');
final String location = key.substring(0, index);
final String name = key.substring(index + 1, key.length());
srcDecl = (XSNotationDecl)componentsExt.item(i+1);
dstDecl = dstGrammar.getGlobalNotationDecl(name, location);
if (dstDecl == null) {
dstGrammar.addGlobalNotationDecl(srcDecl, location);
}
// REVISIT - do we report an error?
else if (dstDecl != srcDecl) {
}
}
}
示例6: addGlobalGroupDecls
import mf.org.apache.xerces.xs.XSNamedMap; //导入方法依赖的package包/类
private void addGlobalGroupDecls(SchemaGrammar srcGrammar, SchemaGrammar dstGrammar) {
XSNamedMap components = srcGrammar.getComponents(XSConstants.MODEL_GROUP_DEFINITION);
int len = components.getLength();
XSGroupDecl srcDecl, dstDecl;
// add global components
for (int i=0; i<len; i++) {
srcDecl = (XSGroupDecl) components.item(i);
dstDecl = dstGrammar.getGlobalGroupDecl(srcDecl.getName());
if (dstDecl == null) {
dstGrammar.addGlobalGroupDecl(srcDecl);
}
else if (srcDecl != dstDecl && !fTolerateDuplicates) {
reportSharingError(srcDecl.getNamespace(), srcDecl.getName());
}
}
// add any extended (duplicate) global components
ObjectList componentsExt = srcGrammar.getComponentsExt(XSConstants.MODEL_GROUP_DEFINITION);
len = componentsExt.getLength();
for (int i=0; i<len; i+= 2) {
final String key = (String) componentsExt.item(i);
final int index = key.indexOf(',');
final String location = key.substring(0, index);
final String name = key.substring(index + 1, key.length());
srcDecl = (XSGroupDecl)componentsExt.item(i+1);
dstDecl = dstGrammar.getGlobalGroupDecl(name, location);
if (dstDecl == null) {
dstGrammar.addGlobalGroupDecl(srcDecl, location);
}
// REVIST - do we report an error?
else if (dstDecl != srcDecl) {
}
}
}
示例7: map
import mf.org.apache.xerces.xs.XSNamedMap; //导入方法依赖的package包/类
private static SchemaModel map(XSModel xsModel, int maxRecusiveDepth)
{
// get namespaces
StringList namespaces = xsModel.getNamespaces();
List<String> namesspaceList = new ArrayList<String>();
for (int i = 0; i < namespaces.getLength(); i++)
{
namesspaceList.add(namespaces.item(i));
}
// get top-level complex elements
XSNamedMap elements = xsModel.getComponents(XSConstants.ELEMENT_DECLARATION);
List<SchemaElementComplex> components = new ArrayList<SchemaElementComplex>();
for (int i = 0; i < elements.getLength(); i++)
{
XSObject object = elements.item(i);
if (!(object instanceof XSElementDeclaration))
{
continue;
}
XSElementDeclaration decl = (XSElementDeclaration) elements.item(i);
if (!isComplexTypeCategory(decl.getTypeDefinition().getTypeCategory()))
{
continue;
}
XSComplexTypeDefinition complexActualElement = (XSComplexTypeDefinition) decl.getTypeDefinition();
String name = object.getName();
String namespace = object.getNamespace();
Stack<NamespaceNamePair> nameNamespaceStack = new Stack<NamespaceNamePair>();
NamespaceNamePair nameNamespace = new NamespaceNamePair(namespace, name);
nameNamespaceStack.add(nameNamespace);
if (log.isDebugEnabled())
{
log.debug("Processing component " + namespace + " " + name);
}
SchemaElementComplex complexElement = process(name, namespace, complexActualElement, false, nameNamespaceStack, maxRecusiveDepth);
if (log.isDebugEnabled())
{
log.debug("Adding component " + namespace + " " + name);
}
components.add(complexElement);
}
return new SchemaModel(components, namesspaceList);
}