Searched defs:clone (Results 226 - 250 of 380) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStyledEditorKit.java162 public Object clone() { method in class:StyledEditorKit
163 StyledEditorKit o = (StyledEditorKit)super.clone();
180 public Object clone() {
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArea.java483 * @return Created clone object
486 public Object clone() { method in class:Area
H A DLine2D.java1115 * @return a clone of this instance.
1120 public Object clone() { method in class:Line2D
1122 return super.clone();
H A DRectangularShape.java384 * @return a clone of this instance.
389 public Object clone() { method in class:RectangularShape
391 return super.clone();
/openjdk7/jdk/src/share/classes/java/awt/image/renderable/
H A DParameterBlock.java70 * <p> A correct way to write the addSource function is to clone
75 * ParameterBlock pb1 = new ParameterBlock(pb.getSources().clone());
81 * <p> The clone method of <code>ParameterBlock</code> has been defined to
82 * perform a clone of both the source and parameter Vectors for
83 * this reason. A standard, shallow clone is available as
133 * @return an Object clone of the <code>ParameterBlock</code>.
137 return super.clone();
148 * and number of sources and parameters in the clone to be invisible
152 * @return an Object clone of the <code>ParameterBlock</code>.
154 public Object clone() { method in class:ParameterBlock
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DPKIXParameters.java488 return (Date) this.date.clone();
504 this.date = (Date) date.clone();
550 tmpList.add((PKIXCertPathChecker)checker.clone());
572 tmpList.add((PKIXCertPathChecker)ck.clone());
590 certPathCheckers.add((PKIXCertPathChecker)checker.clone());
632 return (CertSelector) certSelector.clone();
653 certSelector = (CertSelector) selector.clone();
664 public Object clone() { method in class:PKIXParameters
666 PKIXParameters copy = (PKIXParameters)super.clone();
668 // must clone thes
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DBreakIterator.java251 public Object clone() method in class:BreakIterator
254 return super.clone();
651 this.iter = (BreakIterator) iter.clone();
659 return (BreakIterator) iter.clone();
H A DCollator.java239 return (Collator)result.clone(); // make the world safe
287 return (Collator)result.clone();
459 public Object clone() method in class:Collator
462 return (Collator)super.clone();
547 return (Collator)result.clone();
H A DDigitList.java624 * @return a clone of this instance.
626 public Object clone() { method in class:DigitList
628 DigitList other = (DigitList) super.clone();
/openjdk7/jdk/src/share/classes/java/util/
H A DArrayDeque.java814 public ArrayDeque<E> clone() { method in class:ArrayDeque
816 ArrayDeque<E> result = (ArrayDeque<E>) super.clone();
H A DBitSet.java1079 * The clone of the bit set is another bit set that has exactly the
1082 * @return a clone of this bit set
1085 public Object clone() { method in class:BitSet
1090 BitSet result = (BitSet) super.clone();
1091 result.words = words.clone();
H A DDate.java278 public Object clone() { method in class:Date
281 d = (Date)super.clone();
283 d.cdate = (BaseCalendar.Date) cdate.clone();
959 BaseCalendar.Date d = (BaseCalendar.Date) date.cdate.clone();
H A DEnumMap.java151 vals = m.vals.clone();
172 vals = em.vals.clone();
724 public EnumMap<K, V> clone() { method in class:EnumMap
727 result = (EnumMap<K, V>) super.clone();
731 result.vals = result.vals.clone();
H A DTimeZone.java612 return (TimeZone) getDefaultRef().clone();
617 * method doesn't create a clone.
629 // Don't clone here.
790 * @return a clone of this <code>TimeZone</code>
792 public Object clone() method in class:TimeZone
795 TimeZone other = (TimeZone) super.clone();
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentSkipListSet.java94 * safety, which entails some ugliness in clone()
160 public ConcurrentSkipListSet<E> clone() { method in class:ConcurrentSkipListSet
161 ConcurrentSkipListSet<E> clone = null;
163 clone = (ConcurrentSkipListSet<E>) super.clone();
164 clone.setMap(new ConcurrentSkipListMap(m));
169 return clone;
474 // Support for resetting map in clone
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DAttributes.java284 * public Object clone() { return new Attributes(this); }
290 public Object clone() { method in class:Attributes
H A DManifest.java310 * public Object clone() { return new Manifest(this); }
314 public Object clone() { method in class:Manifest
/openjdk7/jdk/src/share/classes/javax/management/
H A DImmutableDescriptor.java305 return ((Object[]) v).clone();
306 // clone the primitive array, could use an 8-way if/else here
328 return values.clone();
339 return names.clone();
471 public Descriptor clone() { method in class:ImmutableDescriptor
H A DMBeanInfo.java261 * <p>Returns a shallow clone of this instance.
262 * The clone is obtained by simply calling <tt>super.clone()</tt>,
264 * implemented by <tt>Object.clone()</tt>.
267 * <p>Since this class is immutable, the clone method is chiefly of
271 public Object clone () { method in class:MBeanInfo
273 return super.clone() ;
316 return as.clone();
358 return os.clone();
397 return cs.clone();
[all...]
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DDescriptorSupport.java780 public synchronized Object clone() throws RuntimeOperationsException { method in class:DescriptorSupport
784 "clone()", "Entry");
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/javax/naming/directory/
H A DBasicAttribute.java94 public Object clone() { method in class:BasicAttribute
97 attr = (BasicAttribute)super.clone();
101 attr.values = (Vector)values.clone();
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsName.java270 public Object clone() { method in class:DnsName
/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/com/sun/tools/jdi/
H A DConnectorImpl.java55 defaults.put(argument.name(), (Argument)argument.clone());
209 public Object clone() { method in class:ConnectorImpl.ArgumentImpl
211 return super.clone();
213 // Object should always support clone

Completed in 127 milliseconds

1234567891011>>