Searched defs:clone (Results 1 - 25 of 34) sorted by relevance

12

/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/
H A DRecord.java125 * @return a clone of this instance.
129 * clone method can also throw this exception to
133 Object clone() throws CloneNotSupportedException; method in interface:Record
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/
H A DCoyoteInputStream.java109 protected Object clone() method in class:CoyoteInputStream
H A DCoyoteOutputStream.java108 protected Object clone() method in class:CoyoteOutputStream
H A DCoyoteReader.java111 protected Object clone() method in class:CoyoteReader
H A DCoyoteWriter.java114 protected Object clone() method in class:CoyoteWriter
H A DResponseFacade.java141 protected Object clone() throws CloneNotSupportedException { method in class:ResponseFacade
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DCharsetMapper.java196 public final Object clone() { method in class:CharsetMapper
199 CharsetMapper clone = (CharsetMapper)super.clone();
200 clone.map = (Properties)map.clone();
201 return clone;
H A DEnumerator.java97 * @param clone true to clone iterator
99 public Enumerator(Collection<T> collection, boolean clone) { argument
101 this(collection.iterator(), clone);
125 * @param clone true to clone iterator
127 public Enumerator(Iterator<T> iterator, boolean clone) { argument
130 if (!clone) {
159 * @param clone true to clone iterato
161 Enumerator(Map<?, T> map, boolean clone) argument
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/concurrency/
H A DConcurrencyOptVerify.java122 public Object clone() { method in class:ConcurrencyOptVerify
H A DConcurrencyCheckDirty.java159 public Object clone() { method in class:ConcurrencyCheckDirty
H A DConcurrencyDBNative.java94 public Object clone() { method in class:ConcurrencyDBNative
H A DConcurrency.java89 public Object clone(); method in interface:Concurrency
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/
H A DTokenValueSet.java101 public Object clone() throws CloneNotSupportedException { method in class:TokenValueSet
102 return ( super.clone() );
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/ejbqlc/
H A DEJBQLAST.java237 * @return a clone of this instance.
239 protected Object clone() method in class:EJBQLAST
242 EJBQLAST clone = (EJBQLAST)super.clone();
243 clone.setFirstChild(null);
244 clone.setNextSibling(null);
245 return clone;
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sco/
H A DDate.java115 * clone method in order to allow for copying PersistenceCapable
116 * objects. In contrast to Object.clone(), this method must not throw a
119 public Object clone() method in class:Date
121 Date obj = (Date) super.clone();
224 return super.clone();
H A DSqlDate.java119 * clone method in order to allow for copying PersistenceCapable
120 * objects. In contrast to Object.clone(), this method must not throw a
123 public Object clone() method in class:SqlDate
125 SqlDate obj = (SqlDate) super.clone();
186 return super.clone();
H A DSqlTime.java119 * clone method in order to allow for copying PersistenceCapable
120 * objects. In contrast to Object.clone(), this method must not throw a
123 public Object clone() method in class:SqlTime
125 SqlTime obj = (SqlTime) super.clone();
185 return super.clone();
H A DSqlTimestamp.java139 * clone method in order to allow for copying PersistenceCapable
140 * objects. In contrast to Object.clone(), this method must not throw a
143 public Object clone() method in class:SqlTimestamp
145 SqlTimestamp obj = (SqlTimestamp) super.clone();
249 return super.clone();
H A DArrayList.java526 * clone method in order to allow for copying PersistenceCapable
527 * objects. In contrast to Object.clone(), this method must not throw a
530 public Object clone() method in class:ArrayList
532 ArrayList obj = (ArrayList)super.clone();
544 return super.clone();
H A DHashSet.java615 * clone method in order to allow for copying PersistenceCapable
616 * objects. In contrast to Object.clone(), this method must not throw a
619 public Object clone() method in class:HashSet
621 HashSet obj = (HashSet) super.clone();
717 return super.clone();
H A DVector.java671 * clone method in order to allow for copying PersistenceCapable
672 * objects. In contrast to Object.clone(), this method must not throw a
675 public Object clone() method in class:Vector
677 Vector obj = (Vector)super.clone();
689 return super.clone();
/glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/
H A DBucketizedHashtable.java303 * @return a clone of BucketizedHashtable
305 public Object clone() { method in class:BucketizedHashtable
307 BucketizedHashtable bt = (BucketizedHashtable)super.clone();
311 bt.hashtables[i] = (Hashtable)hashtables[i].clone();
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/invocation/
H A DComponentInvocation.java205 public ComponentInvocation clone() { method in class:ComponentInvocation
208 newInv = (ComponentInvocation) super.clone();
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/cmp/
H A DEJBHashSet.java282 public Object clone() { method in class:EJBHashSet
283 logger.finest("---EJBHashSet.clone---"); // NOI18N
284 EJBHashSet newSet = (EJBHashSet)super.clone();
285 newSet.pcSet = (HashSet)pcSet.clone();
297 return (pcSet != null) ? (HashSet)pcSet.clone() : null;
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DResourceAttributes.java1052 public Object clone() { method in class:ResourceAttributes
1054 return super.clone();

Completed in 108 milliseconds

12