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

/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.
47 public final class AssertionSet implements Iterable<PolicyAssertion>, Comparable<AssertionSet> { class in inherits:Iterable,Comparable
48 private static final AssertionSet EMPTY_ASSERTION_SET = new AssertionSet(Collections.unmodifiableList(new LinkedList<PolicyAssertion>()));
96 private AssertionSet(List<PolicyAssertion> list) { method in class:AssertionSet
101 private AssertionSet(final Collection<AssertionSet> alternatives) { method in class:AssertionSet
103 for (AssertionSet alternative : alternatives) {
160 boolean isCompatibleWith(final AssertionSet alternativ
[all...]

Completed in 45 milliseconds