Searched defs:clone (Results 76 - 100 of 380) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanNotificationInfo.java127 * Returns a shallow clone of this instance.
128 * The clone is obtained by simply calling <tt>super.clone()</tt>,
130 * implemented by <tt>Object.clone()</tt>.
133 public Object clone () { method in class:MBeanNotificationInfo
135 return super.clone() ;
154 return types.clone();
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpNull.java114 * Performs a clone action. This provides a workaround for the
116 * @return The SnmpValue clone.
119 return (SnmpValue) clone() ;
124 * @return The object clone.
126 final synchronized public Object clone() { method in class:SnmpNull
129 newclone = (SnmpNull) super.clone() ;
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DCharArrayIterator.java177 public Object clone() { method in class:CharArrayIterator
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DHmacMD5.java124 public Object clone() { method in class:HmacMD5
127 that = (HmacMD5) super.clone();
128 that.hmac = (HmacCore) this.hmac.clone();
H A DHmacPKCS12PBESHA1.java194 public Object clone() { method in class:HmacPKCS12PBESHA1
197 that = (HmacPKCS12PBESHA1)super.clone();
198 that.hmac = (HmacCore)this.hmac.clone();
H A DHmacSHA1.java124 public Object clone() { method in class:HmacSHA1
127 that = (HmacSHA1)super.clone();
128 that.hmac = (HmacCore)this.hmac.clone();
/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());
H A DTicket.java70 public Object clone() { method in class:Ticket
72 new_ticket.realm = (Realm)realm.clone();
73 new_ticket.sname = (PrincipalName)sname.clone();
74 new_ticket.encPart = (EncryptedData)encPart.clone();
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DMD2.java63 this.X = base.X.clone();
64 this.C = base.C.clone();
68 public Object clone() { method in class:MD2
H A DSHA.java69 this.state = base.state.clone();
76 public Object clone() { method in class:SHA
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DCharacterIteratorWrapper.java134 * Creates a clone of this iterator. Clones the underlying character iterator.
135 * @see UCharacterIterator#clone()
137 public Object clone(){ method in class:CharacterIteratorWrapper
139 CharacterIteratorWrapper result = (CharacterIteratorWrapper) super.clone();
140 result.iterator = (CharacterIterator)this.iterator.clone();
H A DReplaceableUCharacterIterator.java82 * Creates a copy of this iterator, does not clone the underlying
86 public Object clone(){ method in class:ReplaceableUCharacterIterator
88 return super.clone();
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DNode.java106 public Object clone() { method in class:Node
108 return super.clone();
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DFontInfo.java69 public Object clone() { method in class:FontInfo
71 return super.clone();
/openjdk7/jdk/src/share/classes/sun/net/
H A DNetworkServer.java72 NetworkServer n = (NetworkServer)clone();
140 public Object clone() { method in class:NetworkServer
142 return super.clone();
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DAclEntryImpl.java165 public synchronized Object clone() { method in class:AclEntryImpl
168 cloned.permissionSet = (Vector<Permission>) permissionSet.clone();
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DFieldGenOrMethodGen.java130 public Object clone() { method in class:FieldGenOrMethodGen
132 return super.clone();
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DBoolStack.java198 public Object clone() method in class:BoolStack
201 return super.clone();
H A DIntStack.java204 * Returns clone of current IntStack
206 * @return clone of current IntStack
208 public Object clone() method in class:IntStack
211 return (IntStack) super.clone();
H A DObjectStack.java207 * Returns clone of current ObjectStack
209 * @return clone of current ObjectStack
211 public Object clone() method in class:ObjectStack
214 return (ObjectStack) super.clone();
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DContextNodeList.java106 * @return A clone of this iteration that has been reset.
113 * Get a clone of this iterator. Be aware that this operation may be
117 * @return A clone of this object.
121 public Object clone() throws CloneNotSupportedException; method in interface:ContextNodeList
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DForwardEntry.java60 protected ForwardEntry (SymtabEntry that, IDLID clone) argument
62 super (that, clone);
69 public Object clone () method in class:ForwardEntry
72 } // clone
H A DIncludeEntry.java67 public Object clone () method in class:IncludeEntry
70 } // clone
H A DSequenceEntry.java63 protected SequenceEntry (SymtabEntry that, IDLID clone) argument
65 super (that, clone);
75 public Object clone () method in class:SequenceEntry
78 } // clone
H A DStructEntry.java63 _members = (Vector)that._members.clone ();
64 _contained = (Vector)that._contained.clone ();
67 protected StructEntry (SymtabEntry that, IDLID clone) argument
69 super (that, clone);
76 public Object clone () method in class:StructEntry
79 } // clone

Completed in 322 milliseconds

1234567891011>>