Searched refs:clone (Results 226 - 250 of 1037) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DModelMBeanInfoSupport.java355 * Returns a shallow clone of this instance. Neither the Descriptor nor
358 * of the clone via {@link #setDescriptor setDescriptor} without affecting
361 * @return a shallow clone of this instance.
363 public Object clone() { method in class:ModelMBeanInfoSupport
554 return (Descriptor) modelMBeanDescriptor.clone();
764 retInfo = ((ModelMBeanAttributeInfo)attrList[i].clone());
798 retInfo = ((ModelMBeanOperationInfo) operList[i].clone());
844 retInfo = ((ModelMBeanConstructorInfo) consList[i].clone());
877 retInfo = ((ModelMBeanNotificationInfo) notifList[i].clone());
919 return (Descriptor) modelMBeanDescriptor.clone();
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DDHTMarkerSegment.java94 protected Object clone() { method in class:DHTMarkerSegment
95 DHTMarkerSegment newGuy = (DHTMarkerSegment) super.clone();
100 newGuy.tables.add(table.clone());
208 protected Object clone() { method in class:DHTMarkerSegment.Htable
211 newGuy = (Htable) super.clone();
214 newGuy.numCodes = (short []) numCodes.clone();
217 newGuy.values = (short []) values.clone();
H A DDQTMarkerSegment.java87 protected Object clone() { method in class:DQTMarkerSegment
88 DQTMarkerSegment newGuy = (DQTMarkerSegment) super.clone();
93 newGuy.tables.add(table.clone());
143 newGuy = (Qtable) luma.clone();
271 protected Object clone() { method in class:DQTMarkerSegment.Qtable
274 newGuy = (Qtable) super.clone();
277 newGuy.data = (int []) data.clone();
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DNameSpaceSymbTable.java62 symb=(SymbMap) initialMap.clone();
77 n=(NameSpaceSymbEntry) n.clone();
139 symb=(SymbMap) symb.clone();
162 entry=(NameSpaceSymbEntry) entry.clone();
231 ob=(NameSpaceSymbEntry) ob.clone();
300 public Object clone() { method in class:NameSpaceSymbEntry
302 return super.clone();
397 protected Object clone() { method in class:SymbMap
399 SymbMap copy=(SymbMap) super.clone();
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DAnnotationInvocationHandler.java85 * if Cloneable had a public clone method.
92 return byteArray.clone();
96 return charArray.clone();
100 return doubleArray.clone();
104 return floatArray.clone();
108 return intArray.clone();
112 return longArray.clone();
116 return shortArray.clone();
120 return booleanArray.clone();
124 return objectArray.clone();
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DBasicTestIterator.java219 ChildTestIterator clone = (ChildTestIterator) super.cloneWithReset();
221 clone.resetProximityPositions();
223 return clone;
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DDataBufferDouble.java157 bankdata = (double[][]) dataArray.clone();
181 bankdata = (double[][]) dataArray.clone();
228 return (double[][]) bankdata.clone();
H A DDataBufferFloat.java159 bankdata = (float[][]) dataArray.clone();
183 bankdata = (float[][]) dataArray.clone();
230 return (float[][]) bankdata.clone();
H A DDataBufferUShort.java177 bankdata = (short[][]) dataArray.clone();
216 bankdata = (short[][]) dataArray.clone();
263 return (short[][]) bankdata.clone();
/openjdk7/jdk/src/share/classes/java/util/
H A DHashSet.java250 public Object clone() { method in class:HashSet
252 HashSet<E> newSet = (HashSet<E>) super.clone();
253 newSet.map = (HashMap<E, Object>) map.clone();
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipEntry.java317 public Object clone() { method in class:ZipEntry
319 ZipEntry e = (ZipEntry)super.clone();
320 e.extra = (extra == null) ? null : extra.clone();
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapAttribute.java55 public Object clone() { method in class:LdapAttribute
57 attr.values = (Vector)values.clone();
164 //if we need to remove props, we must do it to a clone
168 secureEnv = (Hashtable)realEnv.clone();
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DHmacPKCS12PBESHA1.java194 public Object clone() { method in class:HmacPKCS12PBESHA1
197 that = (HmacPKCS12PBESHA1)super.clone();
198 that.hmac = (HmacCore)this.hmac.clone();
/openjdk7/jdk/test/com/oracle/security/ucrypto/
H A DTestDigest.java93 md2 = (MessageDigest) md.clone(); // clone right after construction
101 md2 = (MessageDigest) md.clone(); // clone again after update call
108 md2 = (MessageDigest) md.clone(); // clone after digest
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DETypeInfo2.java62 this.s2kparams = s2kparams.clone();
66 public Object clone() { method in class:ETypeInfo2
165 return ((s2kparams == null) ? null : s2kparams.clone());
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DIncludeEntry.java67 public Object clone () method in class:IncludeEntry
70 } // clone
H A DPragmaEntry.java66 public Object clone () method in class:PragmaEntry
69 } // clone
/openjdk7/jdk/src/share/classes/javax/rmi/ssl/
H A DSslRMIServerSocketFactory.java168 null : enabledCipherSuites.clone();
170 null : enabledProtocols.clone();
219 null : enabledCipherSuites.clone();
235 null : enabledProtocols.clone();
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiMessage.java185 * @return a clone of this instance.
187 public abstract Object clone(); method in class:MidiMessage
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DElementIterator.java114 protected Object clone() throws java.lang.CloneNotSupportedException { method in class:ElementIterator.StackItem
115 return super.clone();
146 public synchronized Object clone() { method in class:ElementIterator
154 StackItem clonee = (StackItem)item.clone();
/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DGCMParameterSpec.java147 return iv.clone();
/openjdk7/jdk/src/share/classes/javax/management/
H A DDescriptor.java571 public Object clone() throws RuntimeOperationsException; method in interface:Descriptor
H A DMBeanOperationInfo.java165 signature = signature.clone();
175 * <p>Returns a shallow clone of this instance.
176 * The clone is obtained by simply calling <tt>super.clone()</tt>,
178 * implemented by <tt>Object.clone()</tt>.
185 public Object clone () { method in class:MBeanOperationInfo
187 return super.clone() ;
233 return signature.clone();
/openjdk7/jdk/src/share/classes/javax/naming/
H A DCannotProceedException.java173 this.environment = environment; // %%% clone it??
211 this.remainingNewName = (Name)(newName.clone());
H A DName.java76 * @see Object#clone()
78 public Object clone(); method in interface:Name

Completed in 85 milliseconds

1234567891011>>