Definition of Clone

Babylon English
clone
v. create offspring through asexual reproduction; create many identical copies of (sheep for example); grow as a clone
n. offspring which is produced by asexual reproduction; person who is nearly identical to another person; thing that imitates or is almost identical to another (in its function, appearance or performance); program or hardware which simulates an original product (Computers)

Search Dictionary:
Search Web Search Dictionary



Clone definition was found in categories: Computer & Internet(6)  Language, Idioms & Slang(4)  Medicine(4)  Science & Technology(4)  Entertainment & Music(1)  Encyclopedia(1)  

Clone Definition from Computer & Internet Dictionaries & Glossaries

FOLDOC
clone
<jargon> 1. An exact copy of a product, made legally or illegally, from documentation or by reverse engineering, and usually cheaper.
E.g. "PC clone": a PC-BUS/ISAEISAVESA, or PCI compatible x86-based microcomputer (this use is sometimes misspelled "klone" or "PClone"). These invariably have much more bang per buck than the IB PCM they resemble.
E.g. "Unix clone": An operating system designed to deliver a Unix-like environment without Unix licence fees or with additional "mission-critical" features such as support for real-time programming.
2. clonebot.
[Jargon File]
(2000-06-15)

Jargon File
clone
n. 1. An exact duplicate: "Our product is a clone of their product." Implies a legal reimplementation from documentation or by reverse-engineering. Also connotes lower price. 2. A shoddy, spurious copy: "Their product is a clone of our product." 3. A blatant ripoff, most likely violating copyright, patent, or trade secret protections: "Your product is a clone of my product." This use implies legal action is pending. 4. `PC clone:' a PC-BUS/ISA or EISA-compatible 80x86-based microcomputer (this use is sometimes spelled `klone' or `PClone'). These invariably have much more bang for the buck than the IBM archetypes they resemble. 5. In the construction `Unix clone': An OS designed to deliver a Unix-lookalike environment without Unix license fees, or with additional `mission-critical' features such as support for real-time programming. 6. v. To make an exact copy of something. "Let me clone that" might mean "I want to borrow that paper so I can make a photocopy" or "Let me get a copy of that file before you mung it".

A Glossary of Internet & PC Terminology
Clone
Basically a copy of a more expensive make of PC - runs exactlly the same software , operating systems etc. The term normally refers to copies of the original IBM PC's

Internet Glossary
Clone
A computer, software product, or device that functions exactly like another, better-known product. In practice, the term refers to any PC
not produced by one of the leading name-brand manufacturers, such as IBM and Compaq.


JDK Doc(JAVA)
clone()
- Method in class java.awt.GridBagConstraints 
public Object clone ()
Creates a copy of this grid bag constraint.Overrides: clone in class Object Returns: a copy of this grid bag constraint

clone() *10
- Method in class java.awt.geom.Line2D 
public Object clone ()
Creates a new object of the same class as this object.Overrides: clone in class Object Returns: a clone of this instance.Throws: OutOfMemoryError - if there is not enough memory.Since: JDK1.2See Also:  Cloneable

clone() *11
- Method in class java.awt.geom.CubicCurve2D 
public Object clone ()
Creates a new object of the same class as this object.Overrides: clone in class Object Returns: a clone of this instance.Throws: OutOfMemoryError - if there is not enough memory.Since: JDK1.2See Also:  Cloneable

clone() *12
- Method in class java.awt.geom.Area 
public Object clone ()
Returns an exact copy of this Area object.Overrides: clone in class Object Returns: Created clone object

clone() *13
- Method in class java.awt.geom.GeneralPath 
public Object clone ()
Creates a new object of the same class as this object.Overrides: clone in class Object Returns: a clone of this instance.Throws: OutOfMemoryError - if there is not enough memory.Since: JDK1.2See Also:  Cloneable

clone() *14
- Method in class java.awt.geom.QuadCurve2D 
public Object clone ()
Creates a new object of the same class and with the same contents as this object.Overrides: clone in class Object Returns: a clone of this instance.Throws: OutOfMemoryError - if there is not enough memory.Since: JDK1.2See Also:  Cloneable

clone() *15
- Method in class java.awt.image.Kernel 
public Object clone ()
Clones this object.Overrides: clone in class Object Returns: a clone of this object.

clone() *16
- Method in class java.awt.image.ImageFilter 
public Object clone ()
Clones this object.Overrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *17
- Method in class java.awt.image.renderable.ParameterBlock 
public Object clone ()
Creates a copy of a ParameterBlock. The source and parameter Vectors are cloned, but the actual sources and parameters are copied by reference. This allows modifications to the order and number of sources and parameters in the clone to be invisible to the original ParameterBlock. Changes to the shared sources or parameters themselves will still be visible.Overrides: clone in class Object Returns: an Object clone of the ParameterBlock.

clone() *18
- Method in class java.awt.image.renderable.RenderContext 
public Object clone ()
Makes a copy of a RenderContext. The area of interest is copied by reference. The usr2dev AffineTransform and hints are cloned, while the area of interest is copied by reference.Overrides: clone in class Object Returns: the new cloned RenderContext.

clone() *19
- Method in class java.awt.print.PageFormat 
public Object clone ()
Makes a copy of this PageFormat with the same contents as this PageFormat.Overrides: clone in class Object Returns: a copy of this PageFormat.

clone() *2
- Method in class java.awt.RenderingHints 
public Object clone ()
Creates a clone of this RenderingHints object that has the same contents as this RenderingHints object.Overrides: clone in class Object Returns: a clone of this instance.

clone() *20
- Method in class java.awt.print.Paper 
public Object clone ()
Creates a copy of this Paper with the same contents as this Paper.Overrides: clone in class Object Returns: a copy of this Paper.

clone() *21
- Method in class java.lang.Object 
protected Object clone () throws CloneNotSupportedException 
Creates and returns a copy of this object. The precise meaning of "copy" may depend on the class of the object. The general intent is that, for any object x, the expression: will be true, and that the expression: will be true, but these are not absolute requirements. While it is typically the case that: will be true, this is not an absolute requirement. Copying an object will typically entail creating a new instance of its class, but it also may require copying of internal data structures as well. No constructors are called. The method for class performs a specific cloning operation. First, if the class of this object does not implement the interface , then a is thrown. Note that all arrays are considered to implement the interface . Otherwise, this method creates a new instance of the class of this object and initializes all its fields with exactly the contents of the corresponding fields of this object, as if by assignment; the contents of the fields are not themselves cloned. Thus, this method performs a "shallow copy" of this object, not a "deep copy" operation. The class does not itself implement the interface , so calling the method on an object whose class is will result in throwing an exception at run time. The method is implemented by the class as a convenient, general utility for subclasses that implement the interface , possibly also overriding the method, in which case the overriding definition can refer to this utility definition by the call: Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *22
- Method in class java.rmi.server.UnicastRemoteObject 
public Object clone () throws CloneNotSupportedException 
Returns a clone of the remote object that is distinct from the original.Overrides: clone in class Object Returns: the new remote objectThrows: CloneNotSupportedException - if clone failed due to a RemoteException.Since: JDK1.1

clone() *23
- Method in class java.security.MessageDigestSpi 
public Object clone () throws CloneNotSupportedException 
Returns a clone if the implementation is cloneable.Overrides: clone in class Object Returns: a clone if the implementation is cloneable.Throws: CloneNotSupportedException - if this is called on an implementation that does not support Cloneable.

clone() *24
- Method in class java.security.MessageDigest 
public Object clone () throws CloneNotSupportedException 
Returns a clone if the implementation is cloneable.Overrides: clone in class MessageDigestSpi Returns: a clone if the implementation is cloneable.Throws: CloneNotSupportedException - if this is called on an implementation that does not support Cloneable.

clone() *25
- Method in class java.security.SignatureSpi 
public Object clone () throws CloneNotSupportedException 
Returns a clone if the implementation is cloneable.Overrides: clone in class Object Returns: a clone if the implementation is cloneable.Throws: CloneNotSupportedException - if this is called on an implementation that does not support Cloneable.

clone() *26
- Method in class java.security.Signature 
public Object clone () throws CloneNotSupportedException 
Returns a clone if the implementation is cloneable.Overrides: clone in class SignatureSpi Returns: a clone if the implementation is cloneable.Throws: CloneNotSupportedException - if this is called on an implementation that does not support Cloneable.

clone() *27
- Method in interface java.security.acl.AclEntry 
public Object clone ()
Clones this ACL entry.Overrides: clone in class Object Returns: a clone of this ACL entry.

clone() *28
- Method in class java.text.DecimalFormatSymbols 
public Object clone ()
Standard override.Overrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *29
- Method in class java.text.Format 
public Object clone ()
Description copied from class: Object  Creates and returns a copy of this object. The precise meaning of "copy" may depend on the class of the object. The general intent is that, for any object x, the expression: will be true, and that the expression: will be true, but these are not absolute requirements. While it is typically the case that: will be true, this is not an absolute requirement. Copying an object will typically entail creating a new instance of its class, but it also may require copying of internal data structures as well. No constructors are called. The method for class performs a specific cloning operation. First, if the class of this object does not implement the interface , then a is thrown. Note that all arrays are considered to implement the interface . Otherwise, this method creates a new instance of the class of this object and initializes all its fields with exactly the contents of the corresponding fields of this object, as if by assignment; the contents of the fields are not themselves cloned. Thus, this method performs a "shallow copy" of this object, not a "deep copy" operation. The class does not itself implement the interface , so calling the method on an object whose class is will result in throwing an exception at run time. The method is implemented by the class as a convenient, general utility for subclasses that implement the interface , possibly also overriding the method, in which case the overriding definition can refer to this utility definition by the call: Overrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *3
- Method in class java.awt.Insets 
public Object clone ()
Create a copy of this object.Overrides: clone in class Object Returns: a copy of this Insets object.

clone() *30
- Method in class java.text.NumberFormat 
public Object clone ()
Overrides CloneableOverrides: clone in class Format Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *31
- Method in class java.text.DecimalFormat 
public Object clone ()
Standard override; no change in semantics.Overrides: clone in class NumberFormat Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *32
- Method in class java.text.DateFormatSymbols 
public Object clone ()
Overrides CloneableOverrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *33
- Method in interface java.text.CharacterIterator 
public Object clone ()
Create a copy of this iteratorOverrides: clone in class Object Returns: A copy of this

clone() *34
- Method in class java.text.DateFormat 
public Object clone ()
Overrides CloneableOverrides: clone in class Format Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *35
- Method in class java.text.SimpleDateFormat 
public Object clone ()
Overrides CloneableOverrides: clone in class DateFormat Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *36
- Method in class java.text.StringCharacterIterator 
public Object clone ()
Creates a copy of this iterator.Specified by:  clone in interface CharacterIterator Overrides: clone in class Object Returns: A copy of this

clone() *37
- Method in class java.text.ChoiceFormat 
public Object clone ()
Overrides CloneableOverrides: clone in class NumberFormat Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *38
- Method in class java.text.Collator 
public Object clone ()
Overrides CloneableOverrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *39
- Method in class java.text.MessageFormat 
public Object clone ()
Overrides CloneableOverrides: clone in class Format Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *4
- Method in class java.awt.datatransfer.DataFlavor 
public Object clone () throws CloneNotSupportedException 
Description copied from class: Object  Creates and returns a copy of this object. The precise meaning of "copy" may depend on the class of the object. The general intent is that, for any object x, the expression: will be true, and that the expression: will be true, but these are not absolute requirements. While it is typically the case that: will be true, this is not an absolute requirement. Copying an object will typically entail creating a new instance of its class, but it also may require copying of internal data structures as well. No constructors are called. The method for class performs a specific cloning operation. First, if the class of this object does not implement the interface , then a is thrown. Note that all arrays are considered to implement the interface . Otherwise, this method creates a new instance of the class of this object and initializes all its fields with exactly the contents of the corresponding fields of this object, as if by assignment; the contents of the fields are not themselves cloned. Thus, this method performs a "shallow copy" of this object, not a "deep copy" operation. The class does not itself implement the interface , so calling the method on an object whose class is will result in throwing an exception at run time. The method is implemented by the class as a convenient, general utility for subclasses that implement the interface , possibly also overriding the method, in which case the overriding definition can refer to this utility definition by the call: Overrides: clone in class Object Returns: a clone of this DataFlavor

clone() *40
- Method in class java.text.BreakIterator 
public Object clone ()
Create a copy of this iteratorOverrides: clone in class Object Returns: A copy of this

clone() *41
- Method in class java.text.RuleBasedCollator 


clone() *42
- Method in class java.util.Hashtable 
public Object clone ()
Creates a shallow copy of this hashtable. All the structure of the hashtable itself is copied, but the keys and values are not cloned. This is a relatively expensive operation.Overrides: clone in class Object Returns: a clone of the hashtable.

clone() *43
- Method in class java.util.Date 
public Object clone ()
Return a copy of this object.Overrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *44
- Method in class java.util.HashMap 
public Object clone ()
Returns a shallow copy of this HashMap instance: the keys and values themselves are not cloned.Overrides: clone in class Object Returns: a shallow copy of this map.

clone() *45
- Method in class java.util.Calendar 
public Object clone ()
Overrides CloneableOverrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *46
- Method in class java.util.TreeSet 
public Object clone ()
Returns a shallow copy of this TreeSet instance. (The elements themselves are not cloned.)Overrides: clone in class Object Returns: a shallow copy of this set.

clone() *47
- Method in class java.util.TimeZone 
public Object clone ()
Overrides CloneableOverrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *48
- Method in class java.util.Vector 
public Object clone ()
Returns a clone of this vector. The copy will contain a reference to a clone of the internal data array, not a reference to the original internal data array of this Vector object.Overrides: clone in class Object Returns: a clone of this vector.

clone() *49
- Method in class java.util.LinkedList 
public Object clone ()
Returns a shallow copy of this LinkedList. (The elements themselves are not cloned.)Overrides: clone in class Object Returns: a shallow copy of this LinkedList instance.

clone() *5
- Method in class java.awt.font.TextLayout 


clone() *50
- Method in class java.util.SimpleTimeZone 
public Object clone ()
Overrides CloneableOverrides: clone in class TimeZone Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *51
- Method in class java.util.BitSet 
public Object clone ()
Cloning this BitSet produces a new BitSet that is equal to it. The clone of the bit set is another bit set that has exactly the same bits set to true as this bit set and the same current size. Overrides the clone method of Object.Overrides: clone in class Object Returns: a clone of this bit set.See Also:  size()

clone() *52
- Method in class java.util.Locale 
public Object clone ()
Overrides CloneableOverrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *53
- Method in class java.util.HashSet 
public Object clone ()
Returns a shallow copy of this HashSet instance: the elements themselves are not cloned.Overrides: clone in class Object Returns: a shallow copy of this set.

clone() *54
- Method in class java.util.ArrayList 
public Object clone ()
Returns a shallow copy of this ArrayList instance. (The elements themselves are not copied.)Overrides: clone in class Object Returns: a clone of this ArrayList instance.

clone() *55
- Method in class java.util.TreeMap 
public Object clone ()
Returns a shallow copy of this TreeMap instance. (The keys and values themselves are not cloned.)Overrides: clone in class Object Returns: a shallow copy of this Map.

clone() *56
- Method in class java.util.jar.Manifest 
public Object clone ()
Returns a shallow copy of this Manifest, implemented as follows: public Object clone() { return new Manifest(this); } Overrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *57
- Method in class java.util.jar.Attributes 
public Object clone ()
Returns a copy of the Attributes, implemented as follows: public Object clone() { return new Attributes(this); } Since the attribute names and values are themselves immutable, the Attributes returned can be safely modified without affecting the original.Overrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *58
- Method in class java.util.zip.ZipEntry 
public Object clone ()
Returns a copy of this entry.Overrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *59
- Method in class javax.swing.DefaultListSelectionModel 
public Object clone () throws CloneNotSupportedException 
Returns a clone of the reciever with the same selection. listenerLists are not duplicated.Overrides: clone in class Object Throws: CloneNotSupportedException - if the receiver does not both (a) implement the Cloneable interface and (b) define a clone method.

clone() *6
- Method in class java.awt.geom.Dimension2D 
public Object clone ()
Creates a new object of the same class as this object.Overrides: clone in class Object Returns: a clone of this instance.Throws: OutOfMemoryError - if there is not enough memory.Since: JDK1.2See Also:  Cloneable

clone() *60
- Method in class javax.swing.AbstractAction 
protected Object clone () throws CloneNotSupportedException 
Clone the abstract action. This gives the clone its own copy of the key/value list, which is not handled for you by Object.clone()Overrides: clone in class Object Tags copied from class: Object  Returns: a clone of this instance.Throws: CloneNotSupportedException - if the object's class does not support the Cloneable interface. Subclasses that override the clone method can also throw this exception to indicate that an instance cannot be cloned. - if there is not enough memory.OutOfMemoryError - if there is not enough memory.See Also:  Cloneable

clone() *61
- Method in class javax.swing.text.EditorKit 
public abstract Object clone ()
Creates a copy of the editor kit. This allows an implementation to serve as a prototype for others, so that they can be quickly created. In a future release this method will be implemented to use Object.cloneOverrides: clone in class Object Returns: the copy

clone() *62
- Method in class javax.swing.text.DefaultEditorKit 
public Object clone ()
Creates a copy of the editor kit. This allows an implementation to serve as a prototype for others, so that they can be quickly created.Overrides: clone in class EditorKit Returns: the copy

clone() *63
- Method in class javax.swing.text.StyledEditorKit 
public Object clone ()
Create a copy of the editor kit. This allows an implementation to serve as a prototype for others, so that they can be quickly created.Overrides: clone in class DefaultEditorKit Returns: the copy

clone() *64
- Method in class javax.swing.text.ElementIterator 
public Object clone ()
Clones the ElementIterator.Overrides: clone in class Object Returns: a cloned ElementIterator Object.

clone() *65
- Method in class javax.swing.text.SimpleAttributeSet 
public Object clone ()
Clones a set of attributes.Overrides: clone in class Object Returns: the new set of attributes

clone() *66
- Method in class javax.swing.text.StyleContext.SmallAttributeSet 
public Object clone ()
Clones a set of attributes. Since the set is immutable, a clone is basically the same set.Overrides: clone in class Object Returns: the set of attributes

clone() *67
- Method in class javax.swing.text.html.HTMLEditorKit 
public Object clone ()
Create a copy of the editor kit. This allows an implementation to serve as a prototype for others, so that they can be quickly created.Overrides: clone in class StyledEditorKit Returns: the copy

clone() *68
- Method in class javax.swing.text.rtf.RTFEditorKit 
public Object clone ()
Create a copy of the editor kit. This allows an implementation to serve as a prototype for others, so that they can be quickly created.Overrides: clone in class StyledEditorKit Returns: the copy

clone() *69
- Method in class javax.swing.tree.DefaultTreeSelectionModel 
public Object clone () throws CloneNotSupportedException 
Returns a clone of the reciever with the same selection. selectionListeners, and PropertyListeners are not duplicated.Overrides: clone in class Object Throws: CloneNotSupportedException - if the receiver does not both (a) implement the Cloneable interface and (b) define a clone method.

clone() *7
- Method in class java.awt.geom.Point2D 
public Object clone ()
Creates a new object of the same class and with the same contents as this object.Overrides: clone in class Object Returns: a clone of this instance.Throws: OutOfMemoryError - if there is not enough memory.Since: JDK1.2See Also:  Cloneable

clone() *70
- Method in class javax.swing.tree.DefaultMutableTreeNode 
public Object clone ()
Overridden to make clone public. Returns a shallow copy of this node; the new node has no parent or children and has a reference to the same user object, if any.Overrides: clone in class Object Returns: a copy of this node

clone() *8
- Method in class java.awt.geom.RectangularShape 
public Object clone ()
Creates a new object of the same class and with the same contents as this object.Overrides: clone in class Object Returns: a clone of this instance.Throws: OutOfMemoryError - if there is not enough memory.Since: JDK1.2See Also:  Cloneable

clone() *9
- Method in class java.awt.geom.AffineTransform 
public Object clone ()
Returns a copy of this AffineTransform object.Overrides: clone in class Object Returns: an Object that is a copy of this AffineTransform object.

clone(Element, Element)
- Method in class javax.swing.text.DefaultStyledDocument.ElementBuffer 
public Element clone (Element  parent, Element  clonee)
Creates a copy of this element, with a different parent.Parameters: parent - the parent element - the element to be clonedclonee - the element to be clonedReturns: the copy

INTERNET TERMS&ACRONYMSV1.0
CLONE
An exact copy of a product,made legally or illegally,from documentation or reverse engineering.


Clone Definition from Language, Idioms & Slang Dictionaries & Glossaries

WordNet 2.0
clone

Noun
1. a person who is almost identical to another
(synonym) ringer, dead ringer
(hypernym) double, image, look-alike
(classification) colloquialism
2. a group of genetically identical cells or organisms derived from a single cell or individual by some kind of asexual reproduction
(synonym) clon
(hypernym) organism, being
3. an unauthorized copy or imitation
(synonym) knockoff
(hypernym) copy

Verb
1. make multiple identical copies of; "people can clone a sheep nowadays"
(hypernym) copy, re-create
(derivation) clon

Australian Slang
Clone
(derogatory) person who imitates another: "a Jana Wendt clone"

English Slang Dictionary v1.2
clone
a distinct type of "gay" image, being stereotypically masculine and epitomized by short hair, bristle moustaches, jeans or leathers. A good example being the 1970s "gay" icons, The Village People.

hEnglish - advanced version
clone

clone
n : a group of genetically identical cells or organisms derived from a single cell or individual by some kind of asexual reproduction [syn: clon]
v : make multiple identical copies of; "people can clone a sheep nowadays"




Clone Definition from Medicine Dictionaries & Glossaries

Dictionary of Medicine (Shahram)
Clone
Literally a fragment, the word in modern medical science has come to mean a replica, for example, of a group of bacteria or a macromolecule such as DNA. Clone also refers to an individual developed from a single somatic (non-germ) cell from a parent, representing an exact replica of that parent. A clone is a group of cells derived from a single ancestral cell.

Aids Glossary
clone
a group of genetically identical cells or organisms derived from a single common ancestor. Also refers to the process of creating identical cells or organisms. Monoclonal refers to the products (e.g., antibodies) of a single clone.

Glossary of HIV/AIDS-Related Terms
CLONE
1. A group of genetically identical cells or organisms descended from a common ancestor. 2. To produce genetically identical copies. 3. A genetically identical replication of a living cell that is valuable for the investigation and reproduction of test cultures.

Terms and Definitions
Clone
A group of identical genes, cells, or organisms derived from a single ancestor.


Clone Definition from Science & Technology Dictionaries & Glossaries

Bioglossary
Clone
Description: A set of genetically identical organisms, asexually reproduced from one ancestral organism.
Source: None

Description: A cell or collection of cells containing identical genetic material. Clones are produced from a single parent cell.
Source: Specialized encyclopedia and dictionaries

Description: A genetic replica of another organism obtained through a non-sexual (no fertilization) reproduction process. Cloning by nucleus transfer involves the transfer of a donor nucleus from (cultured) cells of embryonic, fetal or adult origin into the recipient cytoplasm of an enucleated oocyte or zygote, and the subsequent development of embryos and animals. These clones usually have different mitochondrial genomes.
Source: Global Strategy FAO

Physical Geography Terms and Meanings
Clone
(1) A group of genetically similar plants that have originated by vegetative asexual reproduction from a single parent. (2) Replication of an individual who is genetically identical to its parent.

Glossary of Entomology and Crop Protection
Clone
A population of individuals all derived asexually from the same single parent.

A Botanical Glossary of Taxonomic Terminology
CLONE
a plant derived by vegetative propagation from one original specimen


Clone Definition from Entertainment & Music Dictionaries & Glossaries

English to Federation-Standard Golic Vulcan
Clone (v.)
tolasau


Clone Definition from Encyclopedia Dictionaries & Glossaries

Wikipedia English - The Free Encyclopedia
Clone
Clone may refer to:
  • Cloning, in horticulture and biology, any organism whose genetic information is identical to that of a "mother organism" from which it was created.
  • Clone (genetics), in molecular biology, an exact replica of all or part of a macromolecule (e.g. DNA).
  • Clone (computer science), a computer made by a third party, such as PC clones or Macintosh clones.
  • clone (function), various functions in computer programming including:
  • Clone (computer and video games), a game or game franchise heavily inspired by another.
  • The Rolling Clones, a tribute band, playing music of The Rolling Stones
  • Clone (voting), in the analysis of voting systems, an additional candidate who appears as attractive to each voter as an existing candidate.
  • Clone (database), a complete and modified copy of a database environment that's often used for development or testing purposes.
  • Replica soldier , a cloned troopers from F.E.A.R. universe.
  • butch or masculine gay man, though the term is mostly associated with the 70s and 80s. The "clone uniform" is mustache, jeans, and white t-shirt.
  • Clone tool, a tool in raster graphics editors to move image information from one area in a picture to another.
  • Cl.one, an independent film.
  • Clone trooper, Republic soldiers in the Star Wars universe.
  • Clone wars: A three year time period in the Star Wars universe that involves the clone army of the republic against the separatist movements in the galaxy.
  • "Clone", a song by Justyc .M. from their 1994 album Dixie.
  • Disk cloning, which involves copying the contents of a computer hard disk to a storage medium or file.
  • Clone High, an animated series about a high school full of clones of deceased historic figures.

See more at Wikipedia.org...