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

/openjdk7/jdk/test/sun/net/util/
H A DIPAddressUtilTest.java33 static Object [][] assertions = { field in class:IPAddressUtilTest
53 for (int i=0; i<assertions.length; i++) {
54 String addr = (String) assertions[i][0];
55 boolean expected = ((Boolean) assertions[i][1]).booleanValue();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DPolicyModelGenerator.java116 * @param assertions The assertions that are to be added to the node. May not be null.
118 protected void translate(final ModelNode node, final AssertionSet assertions) { argument
119 for (PolicyAssertion assertion : assertions) {
132 * Iterates through all contained assertions and adds them to the info model.
134 * @param assertionParametersIterator The contained assertions.
135 * @param assertionNode The node to which the assertions are added as child nodes
H A DPolicyModelTranslator.java59 final List<ModelNode> assertions = new LinkedList<ModelNode>(); field in class:PolicyModelTranslator.ContentDecomposition
63 assertions.clear();
261 final RawAlternative alternative = new RawAlternative(decomposition.assertions);
267 final Collection<Collection<ModelNode>> combinations = PolicyUtils.Collections.combine(decomposition.assertions, decomposition.exactlyOneContents, false);
313 decomposition.assertions.add(node);
/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.
50 * The comparator comapres policy assertions according to their publicly accessible attributes, in the following
56 * 4. has nested assertions (boolean): false < true
92 private final List<PolicyAssertion> assertions; field in class:AssertionSet
98 this.assertions = list;
102 this.assertions = new LinkedList<PolicyAssertion>();
104 addAll(alternative.assertions);
113 if (this.assertions.contains(assertion)) {
116 this.assertions.add(assertion);
122 private boolean addAll(final Collection<? extends PolicyAssertion> assertions) { argument
211 createAssertionSet(final Collection<? extends PolicyAssertion> assertions) argument
[all...]

Completed in 30 milliseconds