com.sun.org.apache.xerces.internal.xs.XSIDCDefinition Java Examples
The following examples show how to use
com.sun.org.apache.xerces.internal.xs.XSIDCDefinition.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SchemaGrammar.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public XSIDCDefinition getIDCDefinition(String name) { return getIDConstraintDecl(name); }
Example #2
Source File: SchemaGrammar.java From Bytecoder with Apache License 2.0 | 4 votes |
public XSIDCDefinition getIDCDefinition(String name) { return getIDConstraintDecl(name); }
Example #3
Source File: XSModelImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 3 votes |
/** * Convenience method. Returns a top-level model group definition. * * @param name The name of the definition. * @param namespace The namespace of the definition, otherwise null. * @param loc The schema location where the component was defined * @return A top-level model group definition definition or null if such * definition does not exist. */ public XSIDCDefinition getIDCDefinition(String name, String namespace, String loc) { SchemaGrammar sg = (SchemaGrammar)fGrammarMap.get(null2EmptyString(namespace)); if (sg == null) { return null; } return sg.getIDConstraintDecl(name, loc); }
Example #4
Source File: XSModelImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 3 votes |
/** * Convenience method. Returns a top-level model group definition. * * @param name The name of the definition. * @param namespace The namespace of the definition, otherwise null. * @return A top-level model group definition definition or null if such * definition does not exist. */ public XSIDCDefinition getIDCDefinition(String name, String namespace) { SchemaGrammar sg = (SchemaGrammar)fGrammarMap.get(null2EmptyString(namespace)); if (sg == null) { return null; } return (XSIDCDefinition)sg.fGlobalIDConstraintDecls.get(name); }
Example #5
Source File: XSModelImpl.java From Bytecoder with Apache License 2.0 | 3 votes |
/** * Convenience method. Returns a top-level model group definition. * * @param name The name of the definition. * @param namespace The namespace of the definition, otherwise null. * @return A top-level model group definition definition or null if such * definition does not exist. */ public XSIDCDefinition getIDCDefinition(String name, String namespace) { SchemaGrammar sg = (SchemaGrammar)fGrammarMap.get(null2EmptyString(namespace)); if (sg == null) { return null; } return (XSIDCDefinition)sg.fGlobalIDConstraintDecls.get(name); }
Example #6
Source File: XSModelImpl.java From Bytecoder with Apache License 2.0 | 3 votes |
/** * Convenience method. Returns a top-level model group definition. * * @param name The name of the definition. * @param namespace The namespace of the definition, otherwise null. * @param loc The schema location where the component was defined * @return A top-level model group definition definition or null if such * definition does not exist. */ public XSIDCDefinition getIDCDefinition(String name, String namespace, String loc) { SchemaGrammar sg = (SchemaGrammar)fGrammarMap.get(null2EmptyString(namespace)); if (sg == null) { return null; } return sg.getIDConstraintDecl(name, loc); }
Example #7
Source File: IdentityConstraint.java From openjdk-8 with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return null; }
Example #8
Source File: KeyRef.java From jdk1.8-source-analysis with Apache License 2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return fKey; }
Example #9
Source File: KeyRef.java From openjdk-8 with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return fKey; }
Example #10
Source File: IdentityConstraint.java From openjdk-8-source with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return null; }
Example #11
Source File: KeyRef.java From openjdk-8-source with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return fKey; }
Example #12
Source File: IdentityConstraint.java From hottub with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return null; }
Example #13
Source File: KeyRef.java From hottub with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return fKey; }
Example #14
Source File: IdentityConstraint.java From openjdk-jdk9 with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return null; }
Example #15
Source File: KeyRef.java From openjdk-jdk9 with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return fKey; }
Example #16
Source File: IdentityConstraint.java From Bytecoder with Apache License 2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return null; }
Example #17
Source File: KeyRef.java From Bytecoder with Apache License 2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return fKey; }
Example #18
Source File: IdentityConstraint.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return null; }
Example #19
Source File: KeyRef.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return fKey; }
Example #20
Source File: IdentityConstraint.java From openjdk-jdk8u with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return null; }
Example #21
Source File: KeyRef.java From openjdk-jdk8u with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return fKey; }
Example #22
Source File: IdentityConstraint.java From JDKSourceCode1.8 with MIT License | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return null; }
Example #23
Source File: KeyRef.java From JDKSourceCode1.8 with MIT License | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return fKey; }
Example #24
Source File: IdentityConstraint.java From jdk8u60 with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return null; }
Example #25
Source File: KeyRef.java From jdk8u60 with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return fKey; }
Example #26
Source File: IdentityConstraint.java From TencentKona-8 with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return null; }
Example #27
Source File: KeyRef.java From TencentKona-8 with GNU General Public License v2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return fKey; }
Example #28
Source File: IdentityConstraint.java From jdk1.8-source-analysis with Apache License 2.0 | 2 votes |
/** * {referenced key} Required if {identity-constraint category} is keyref, * forbidden otherwise. An identity-constraint definition with * {identity-constraint category} equal to key or unique. */ public XSIDCDefinition getRefKey() { return null; }