Home | History | Annotate | Download | only in ext

Lines Matching refs:specified

23  * <p>The <em>specified</em> flag for each attribute will always
27 * always be false, except for defaulted attributes (<em>specified</em>
41 private boolean[] specified;
49 specified = EmptyArray.BOOLEAN;
56 * <em>specified</em> and <em>declared</em> flags for each
123 * Returns the current value of an attribute's "specified" flag.
135 return specified [index];
140 * Returns the current value of an attribute's "specified" flag.
157 return specified [index];
162 * Returns the current value of an attribute's "specified" flag.
176 return specified [index];
186 * Copy an entire Attributes object. The "specified" flags are
202 specified = new boolean [length];
208 specified [i] = a2.isSpecified (i);
213 specified [i] = true;
221 * "specified" flag to true. To set that flag's value
247 if (length > specified.length) {
253 System.arraycopy (specified, 0, newFlags, 0, specified.length);
254 specified = newFlags;
257 specified [length - 1] = true;
271 System.arraycopy (specified, index + 1, specified, index,
298 * Assign a value to the "specified" flag of a specific attribute.
312 specified [index] = value;