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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DElementDecl.java133 private Set<XSElementDecl> substitutables = null; field in class:ElementDecl
135 /** Unmodifieable view of {@link #substitutables}. */
139 if( substitutables==null ) {
142 substitutables = substitutablesView = Collections.singleton((XSElementDecl)this);
148 if( substitutables==null ) {
149 substitutables = new HashSet<XSElementDecl>();
150 substitutables.add(this);
151 substitutablesView = Collections.unmodifiableSet(substitutables);
153 substitutables.add(decl);

Completed in 57 milliseconds