Searched defs:alternative (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DDuplicateAttributeDetector.java88 void alternative() { method in class:DuplicateAttributeDetector
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DAssertionSet.java43 * The AssertionSet is a set of assertions. It represents a single policy alternative.
103 for (AssertionSet alternative : alternatives) {
104 addAll(alternative.assertions);
154 * Checks whether this policy alternative is compatible with the provided policy alternative.
156 * @param alternative policy alternative used for compatibility test
160 boolean isCompatibleWith(final AssertionSet alternative, PolicyIntersector.CompatibilityMode mode) { argument
161 boolean result = (mode == PolicyIntersector.CompatibilityMode.LAX) || this.vocabulary.equals(alternative.vocabulary);
163 result = result && this.areAssertionsCompatible(alternative, mod
169 areAssertionsCompatible(final AssertionSet alternative, PolicyIntersector.CompatibilityMode mode) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DPolicyModelTranslator.java261 final RawAlternative alternative = new RawAlternative(decomposition.assertions);
262 processedPolicy.alternatives.add(alternative);
263 if (!alternative.allNestedPolicies.isEmpty()) {
264 policyQueue.addAll(alternative.allNestedPolicies);
269 // processed alternative was split into some new alternatives, which we need to process
276 // normalize nested policies to contain single alternative only
287 * Decomposes the unprocessed alternative content into two different collections:
365 private List<AssertionSet> normalizeRawAlternative(final RawAlternative alternative) throws AssertionCreationException, PolicyException { argument
368 if (!alternative.nestedAssertions.isEmpty()) {
369 final Queue<RawAssertion> nestedAssertionsQueue = new LinkedList<RawAssertion>(alternative
[all...]

Completed in 42 milliseconds