Lines Matching defs:declKey

1544         final String declKey = (namespace == null || namespace.length() == 0)
1547 if (fGlobalAttrDecls.get(declKey) == null) {
1548 fGlobalAttrDecls.put(declKey, decl);
1555 final String declKey = (namespace == null || namespace.length() == 0)
1558 if (fGlobalAttrGrpDecls.get(declKey) == null) {
1559 fGlobalAttrGrpDecls.put(declKey, decl);
1566 final String declKey = (namespace == null || namespace.length() == 0)
1569 if (fGlobalElemDecls.get(declKey) == null) {
1570 fGlobalElemDecls.put(declKey, decl);
1577 final String declKey = (namespace == null || namespace.length() == 0)
1580 if (fGlobalGroupDecls.get(declKey) == null) {
1581 fGlobalGroupDecls.put(declKey, decl);
1588 final String declKey = (namespace == null || namespace.length() == 0)
1591 if (fGlobalNotationDecls.get(declKey) == null) {
1592 fGlobalNotationDecls.put(declKey, decl);
1599 final String declKey = (namespace == null || namespace.length() == 0)
1602 if (fGlobalTypeDecls.get(declKey) == null) {
1603 fGlobalTypeDecls.put(declKey, decl);
1610 final String declKey = (namespace == null || namespace.length() == 0)
1613 if (fGlobalIDConstraintDecls.get(declKey) == null) {
1614 fGlobalIDConstraintDecls.put(declKey, decl);
1618 private XSAttributeDecl getGlobalAttributeDecl(String declKey) {
1619 return (XSAttributeDecl)fGlobalAttrDecls.get(declKey);
1622 private XSAttributeGroupDecl getGlobalAttributeGroupDecl(String declKey) {
1623 return (XSAttributeGroupDecl)fGlobalAttrGrpDecls.get(declKey);
1626 private XSElementDecl getGlobalElementDecl(String declKey) {
1627 return (XSElementDecl)fGlobalElemDecls.get(declKey);
1630 private XSGroupDecl getGlobalGroupDecl(String declKey) {
1631 return (XSGroupDecl)fGlobalGroupDecls.get(declKey);
1634 private XSNotationDecl getGlobalNotationDecl(String declKey) {
1635 return (XSNotationDecl)fGlobalNotationDecls.get(declKey);
1638 private XSTypeDefinition getGlobalTypeDecl(String declKey) {
1639 return (XSTypeDefinition)fGlobalTypeDecls.get(declKey);
1642 private IdentityConstraint getIDConstraintDecl(String declKey) {
1643 return (IdentityConstraint)fGlobalIDConstraintDecls.get(declKey);
1707 String declKey = declToTraverse.uri == null? ","+declToTraverse.localpart:
1717 Object retObj2 = getGlobalDecl(declKey, declType);
1730 decl = getElementFromMap(fUnparsedAttributeRegistry, declKey);
1731 declDoc = getDocInfoFromMap(fUnparsedAttributeRegistrySub, declKey);
1734 decl = getElementFromMap(fUnparsedAttributeGroupRegistry, declKey);
1735 declDoc = getDocInfoFromMap(fUnparsedAttributeGroupRegistrySub, declKey);
1738 decl = getElementFromMap(fUnparsedElementRegistry, declKey);
1739 declDoc = getDocInfoFromMap(fUnparsedElementRegistrySub, declKey);
1742 decl = getElementFromMap(fUnparsedGroupRegistry, declKey);
1743 declDoc = getDocInfoFromMap(fUnparsedGroupRegistrySub, declKey);
1746 decl = getElementFromMap(fUnparsedIdentityConstraintRegistry, declKey);
1747 declDoc = getDocInfoFromMap(fUnparsedIdentityConstraintRegistrySub, declKey);
1750 decl = getElementFromMap(fUnparsedNotationRegistry, declKey);
1751 declDoc = getDocInfoFromMap(fUnparsedNotationRegistrySub, declKey);
1754 decl = getElementFromMap(fUnparsedTypeRegistry, declKey);
1755 declDoc = getDocInfoFromMap(fUnparsedTypeRegistrySub, declKey);
1804 protected Object getGlobalDecl(String declKey, int declType) {
1809 retObj = getGlobalAttributeDecl(declKey);
1812 retObj = getGlobalAttributeGroupDecl(declKey);
1815 retObj = getGlobalElementDecl(declKey);
1818 retObj = getGlobalGroupDecl(declKey);
1821 retObj = getIDConstraintDecl(declKey);
1824 retObj = getGlobalNotationDecl(declKey);
1827 retObj = getGlobalTypeDecl(declKey);
4167 private Element getElementFromMap(Map<String, Element> registry, String declKey) {
4169 return registry.get(declKey);
4172 private XSDocumentInfo getDocInfoFromMap(Map<String, XSDocumentInfo> registry, String declKey) {
4174 return registry.get(declKey);