/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/ |
H A D | Record.java | 125 * @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 D | CoyoteInputStream.java | 109 protected Object clone() method in class:CoyoteInputStream
|
H A D | CoyoteOutputStream.java | 108 protected Object clone() method in class:CoyoteOutputStream
|
H A D | CoyoteReader.java | 111 protected Object clone() method in class:CoyoteReader
|
H A D | CoyoteWriter.java | 114 protected Object clone() method in class:CoyoteWriter
|
H A D | ResponseFacade.java | 141 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 D | CharsetMapper.java | 196 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 D | Enumerator.java | 97 * @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 D | ConcurrencyOptVerify.java | 122 public Object clone() { method in class:ConcurrencyOptVerify
|
H A D | ConcurrencyCheckDirty.java | 159 public Object clone() { method in class:ConcurrencyCheckDirty
|
H A D | ConcurrencyDBNative.java | 94 public Object clone() { method in class:ConcurrencyDBNative
|
H A D | Concurrency.java | 89 public Object clone(); method in interface:Concurrency
|
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/ |
H A D | TokenValueSet.java | 101 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 D | EJBQLAST.java | 237 * @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 D | Date.java | 115 * 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 D | SqlDate.java | 119 * 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 D | SqlTime.java | 119 * 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 D | SqlTimestamp.java | 139 * 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 D | ArrayList.java | 526 * 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 D | HashSet.java | 615 * 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 D | Vector.java | 671 * 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 D | BucketizedHashtable.java | 303 * @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 D | ComponentInvocation.java | 205 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 D | EJBHashSet.java | 282 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 D | ResourceAttributes.java | 1052 public Object clone() { method in class:ResourceAttributes 1054 return super.clone();
|