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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DUtil.java62 public static void buildSubstitutables( XSType _this, Set substitutables ) {
64 buildSubstitutables( _this, _this, substitutables );
67 private static void buildSubstitutables( XSType head, XSType _this, Set substitutables ) {
71 if(substitutables.add(_this)) {
74 buildSubstitutables( head, child[i], substitutables );
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 37 milliseconds