Lines Matching defs:declKey

1520         final String declKey = (namespace == null || namespace.length() == 0)
1523 if (fGlobalAttrDecls.get(declKey) == null) {
1524 fGlobalAttrDecls.put(declKey, decl);
1531 final String declKey = (namespace == null || namespace.length() == 0)
1534 if (fGlobalAttrGrpDecls.get(declKey) == null) {
1535 fGlobalAttrGrpDecls.put(declKey, decl);
1542 final String declKey = (namespace == null || namespace.length() == 0)
1545 if (fGlobalElemDecls.get(declKey) == null) {
1546 fGlobalElemDecls.put(declKey, decl);
1553 final String declKey = (namespace == null || namespace.length() == 0)
1556 if (fGlobalGroupDecls.get(declKey) == null) {
1557 fGlobalGroupDecls.put(declKey, decl);
1564 final String declKey = (namespace == null || namespace.length() == 0)
1567 if (fGlobalNotationDecls.get(declKey) == null) {
1568 fGlobalNotationDecls.put(declKey, decl);
1575 final String declKey = (namespace == null || namespace.length() == 0)
1578 if (fGlobalTypeDecls.get(declKey) == null) {
1579 fGlobalTypeDecls.put(declKey, decl);
1586 final String declKey = (namespace == null || namespace.length() == 0)
1589 if (fGlobalIDConstraintDecls.get(declKey) == null) {
1590 fGlobalIDConstraintDecls.put(declKey, decl);
1594 private XSAttributeDecl getGlobalAttributeDecl(String declKey) {
1595 return (XSAttributeDecl)fGlobalAttrDecls.get(declKey);
1598 private XSAttributeGroupDecl getGlobalAttributeGroupDecl(String declKey) {
1599 return (XSAttributeGroupDecl)fGlobalAttrGrpDecls.get(declKey);
1602 private XSElementDecl getGlobalElementDecl(String declKey) {
1603 return (XSElementDecl)fGlobalElemDecls.get(declKey);
1606 private XSGroupDecl getGlobalGroupDecl(String declKey) {
1607 return (XSGroupDecl)fGlobalGroupDecls.get(declKey);
1610 private XSNotationDecl getGlobalNotationDecl(String declKey) {
1611 return (XSNotationDecl)fGlobalNotationDecls.get(declKey);
1614 private XSTypeDefinition getGlobalTypeDecl(String declKey) {
1615 return (XSTypeDefinition)fGlobalTypeDecls.get(declKey);
1618 private IdentityConstraint getIDConstraintDecl(String declKey) {
1619 return (IdentityConstraint)fGlobalIDConstraintDecls.get(declKey);
1683 String declKey = declToTraverse.uri == null? ","+declToTraverse.localpart:
1693 Object retObj2 = getGlobalDecl(declKey, declType);
1706 decl = getElementFromMap(fUnparsedAttributeRegistry, declKey);
1707 declDoc = getDocInfoFromMap(fUnparsedAttributeRegistrySub, declKey);
1710 decl = getElementFromMap(fUnparsedAttributeGroupRegistry, declKey);
1711 declDoc = getDocInfoFromMap(fUnparsedAttributeGroupRegistrySub, declKey);
1714 decl = getElementFromMap(fUnparsedElementRegistry, declKey);
1715 declDoc = getDocInfoFromMap(fUnparsedElementRegistrySub, declKey);
1718 decl = getElementFromMap(fUnparsedGroupRegistry, declKey);
1719 declDoc = getDocInfoFromMap(fUnparsedGroupRegistrySub, declKey);
1722 decl = getElementFromMap(fUnparsedIdentityConstraintRegistry, declKey);
1723 declDoc = getDocInfoFromMap(fUnparsedIdentityConstraintRegistrySub, declKey);
1726 decl = getElementFromMap(fUnparsedNotationRegistry, declKey);
1727 declDoc = getDocInfoFromMap(fUnparsedNotationRegistrySub, declKey);
1730 decl = getElementFromMap(fUnparsedTypeRegistry, declKey);
1731 declDoc = getDocInfoFromMap(fUnparsedTypeRegistrySub, declKey);
1780 protected Object getGlobalDecl(String declKey, int declType) {
1785 retObj = getGlobalAttributeDecl(declKey);
1788 retObj = getGlobalAttributeGroupDecl(declKey);
1791 retObj = getGlobalElementDecl(declKey);
1794 retObj = getGlobalGroupDecl(declKey);
1797 retObj = getIDConstraintDecl(declKey);
1800 retObj = getGlobalNotationDecl(declKey);
1803 retObj = getGlobalTypeDecl(declKey);
4111 private Element getElementFromMap(Map<String, Element> registry, String declKey) {
4113 return registry.get(declKey);
4116 private XSDocumentInfo getDocInfoFromMap(Map<String, XSDocumentInfo> registry, String declKey) {
4118 return registry.get(declKey);