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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DHeaderList.java123 * {@link #moreUnderstoodBits}. The expectation is that
133 private BitSet moreUnderstoodBits = null; field in class:HeaderList
153 if (that.moreUnderstoodBits != null) {
154 this.moreUnderstoodBits = (BitSet) that.moreUnderstoodBits.clone();
206 if (moreUnderstoodBits == null) {
207 moreUnderstoodBits = new BitSet();
209 moreUnderstoodBits.set(index - 32);
226 if (moreUnderstoodBits == null) {
229 return moreUnderstoodBits
[all...]

Completed in 30 milliseconds