Searched defs:vocabulary (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/
H A DExternalVocabulary.java31 * An external vocabulary.
33 * An external vocabulary has a URI that refers to a vocabulary.
40 * A URI that refers to the external vocabulary.
45 * The vocabulary that is refered to by the URI.
47 public final Vocabulary vocabulary; field in class:ExternalVocabulary
49 public ExternalVocabulary(String URI, Vocabulary vocabulary) { argument
50 if (URI == null || vocabulary == null) {
55 this.vocabulary = vocabulary;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/tools/
H A DPrintTable.java50 public static void printVocabulary(ParserVocabulary vocabulary) { argument
51 printArray("Attribute Name Table", vocabulary.attributeName);
52 printArray("Attribute Value Table", vocabulary.attributeValue);
53 printArray("Character Content Chunk Table", vocabulary.characterContentChunk);
54 printArray("Element Name Table", vocabulary.elementName);
55 printArray("Local Name Table", vocabulary.localName);
56 printArray("Namespace Name Table", vocabulary.namespaceName);
57 printArray("Other NCName Table", vocabulary.otherNCName);
58 printArray("Other String Table", vocabulary.otherString);
59 printArray("Other URI Table", vocabulary
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DAssertionSet.java93 private final Set<QName> vocabulary = new TreeSet<QName>(PolicyUtils.Comparison.QNAME_COMPARATOR); field in class:AssertionSet
94 private final Collection<QName> immutableVocabulary = Collections.unmodifiableCollection(vocabulary);
117 this.vocabulary.add(assertion.getName());
127 result &= add(assertion); // this is here to ensure that vocabulary is built correctly as well
144 * Retrieves the vocabulary of this policy expression. The vocabulary is represented by an immutable collection of
147 * @return immutable collection of assertion types contained in the assertion set (a policy vocabulary).
161 boolean result = (mode == PolicyIntersector.CompatibilityMode.LAX) || this.vocabulary.equals(alternative.vocabulary);
246 if (vocabulary
[all...]
H A DPolicy.java67 * Constant represents empty vocabulary of a 'NULL' or 'EMPTY' policies. The constant supports memory effective
105 * internal collection of policy vocabulary entries (qualified names of all assertion types present in the policy expression)
107 private final Set<QName> vocabulary; field in class:Policy
110 * immutable version of policy vocabulary that is made available to clients via getter method
285 * @param vocabulary represents the vocabulary of the policy object. Subsequent manipulations on the collection
288 private Policy(final String name, final String policyId, final List<AssertionSet> assertionSets, final Set<QName> vocabulary) { argument
294 this.vocabulary = vocabulary;
295 this.immutableVocabulary = Collections.unmodifiableCollection(this.vocabulary);
358 Policy(final NamespaceVersion nsVersion, final String name, final String policyId, final List<AssertionSet> assertionSets, final Set<QName> vocabulary) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DEncoder.java184 * The vocabulary that is used by the encoder
189 * The vocabulary application data that is used by the encoder
547 // Create internal serializer vocabulary
549 // Set the external vocabulary
550 SerializerVocabulary ev = new SerializerVocabulary(v.vocabulary,
596 * @param vocabulary the vocabulary to be used for encoding.
598 public void setVocabulary(SerializerVocabulary vocabulary) { argument
599 _v = vocabulary;
616 * Encode the initial vocabulary o
[all...]

Completed in 40 milliseconds