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

/glassfish-3.1.2/core/kernel/src/main/java/org/glassfish/kernel/
H A DFileMonitoringImpl.java86 removed(file);
122 private void removed(final File file) { method in class:FileMonitoringImpl
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEJBLocalRemoteObject.java65 transient private boolean removed=false; field in class:EJBLocalRemoteObject
99 removed = r;
104 return removed;
H A DReadOnlyContextImpl.java57 private boolean removed = false; field in class:ReadOnlyContextImpl
87 return removed;
91 removed = value;
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DNestingInfo.java89 boolean removed = false; field in class:NestingInfo
114 // If the sequence of ancestors is empty, set the removed flag as this
118 removed = (ancestors.length == 0);
196 * If the child could not be removed from the parent, the operation returns
213 if(!removed) {
217 removed = true;
252 if( forgetting ) removed = true;
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sco/
H A DArrayList.java80 private transient java.util.Vector removed = new java.util.Vector(); field in class:ArrayList
177 removed.add(o);
179 if (removed.remove(element) == false)
214 if (removed.remove(o) == false)
235 * @param o element to be removed from this ArrayList, if present.
253 removed.add(obj);
284 if (removed.remove(element) == false)
301 * indices). Returns the element that was removed from the ArrayList.
303 * @param index the index of the element to removed.
318 removed
[all...]
H A DHashSet.java81 private transient java.util.HashSet removed = new java.util.HashSet(); field in class:HashSet
195 if (removed.remove(o) == false)
310 if (removed.remove(o) == false)
359 * @param o object to be removed from this set, if present.
390 removed.add(o);
419 * @param c elements to be removed from this collection.
457 removed.add(o);
527 removed.add(o);
582 removed.clear();
587 removed
[all...]
H A DVector.java80 private transient java.util.Vector removed = new java.util.Vector(); field in class:Vector
175 removed.add(o);
177 if (removed.remove(obj) == false)
209 removed.add(obj);
238 if (removed.remove(obj) == false)
272 if (removed.remove(obj) == false)
290 * @param obj the component to be removed.
308 removed.add(obj);
330 removed.add(o);
377 removed
[all...]

Completed in 118 milliseconds