jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/sourcemodel/PolicySourceModel.java
changeset 32795 5a5710ee05a0
parent 25871 b80b84e87032
equal deleted inserted replaced
32712:f61a63b7d1e5 32795:5a5710ee05a0
   297      * Returns a boolean value indicating whether this policy source model contains references to another policy source models.
   297      * Returns a boolean value indicating whether this policy source model contains references to another policy source models.
   298      * <p/>
   298      * <p/>
   299      * Every source model that references other policies must be expanded before it can be translated into a Policy objects. See
   299      * Every source model that references other policies must be expanded before it can be translated into a Policy objects. See
   300      * {@link #expand(PolicySourceModelContext)} and {@link #isExpanded()} for more details.
   300      * {@link #expand(PolicySourceModelContext)} and {@link #isExpanded()} for more details.
   301      *
   301      *
   302      * @return {@code true} or {code false} depending on whether this policy source model contains references to another policy source models.
   302      * @return {@code true} or {@code false} depending on whether this policy source model contains references to another policy source models.
   303      */
   303      */
   304     public boolean containsPolicyReferences() {
   304     public boolean containsPolicyReferences() {
   305         return !references.isEmpty();
   305         return !references.isEmpty();
   306     }
   306     }
   307 
   307