Searched refs:clone (Results 401 - 425 of 1037) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeSelectionModel.java1159 * Returns a clone of this object with the same selection.
1166 public Object clone() throws CloneNotSupportedException { method in class:DefaultTreeSelectionModel
1167 DefaultTreeSelectionModel clone = (DefaultTreeSelectionModel)
1168 super.clone();
1170 clone.changeSupport = null;
1174 clone.selection = new TreePath[selLength];
1175 System.arraycopy(selection, 0, clone.selection, 0, selLength);
1177 clone.listenerList = new EventListenerList();
1178 clone.listSelectionModel = (DefaultListSelectionModel)
1179 listSelectionModel.clone();
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DAttribute.java285 public Object clone() { method in class:Attribute
289 o = super.clone();
H A DCodeException.java227 return (CodeException)clone();
H A DConstantValue.java77 * references (shallow copy). Use clone() for a physical copy.
177 ConstantValue c = (ConstantValue)clone();
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DLocalVariableGen.java282 public Object clone() { method in class:LocalVariableGen
284 return super.clone();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSGrammarBucket.java104 Vector grammars = ((Vector)currGrammars.clone());
176 Vector grammars = ((Vector)currGrammars.clone());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DMemRegion.java78 public Object clone() { method in class:MemRegion
83 return (MemRegion) clone();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DRegisterMap.java46 copy themselves (through either the clone() or copy()
120 public abstract Object clone(); method in class:RegisterMap
123 return (RegisterMap) clone();
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKeyImpl.java69 this.keyBytes = keyBytes.clone();
154 return keyBytes.clone();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DDefaultSynthStyleFactory.java197 return (SynthStyle)((DefaultSynthStyle)styles.get(0)).clone();
203 style = (DefaultSynthStyle)style.clone();
/openjdk7/jdk/src/share/classes/java/awt/geom/
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/
H A DDataBuffer.java280 this.offsets = (int[])offsets.clone();
308 return (int[])offsets.clone();
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationGroupDesc.java182 return (props != null) ? (Properties) props.clone() : null;
266 return options.clone();
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanAttributeInfo.java194 * <p>Returns a shallow clone of this instance.
195 * The clone is obtained by simply calling <tt>super.clone()</tt>,
197 * implemented by <tt>Object.clone()</tt>.
203 public Object clone () { method in class:MBeanAttributeInfo
205 return super.clone() ;
H A DNotificationBroadcasterSupport.java104 * cloned by the constructor as if by {@code info.clone()}, and
106 * clone.</p>
136 * cloned by the constructor as if by {@code info.clone()}, and
138 * clone.</p>
156 notifInfo = info == null ? NO_NOTIFICATION_INFO : info.clone();
214 return notifInfo.clone();
/openjdk7/jdk/src/share/classes/java/awt/
H A DBasicStroke.java226 this.dash = (float []) dash.clone();
360 return (float[]) dash.clone();
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DFileTreeCreatorVC10.java20 DirAttributes currentFileAttr = attributes.peek().clone();
97 DirAttributes newAttr = attributes.peek().clone();
H A DFileTreeCreatorVC7.java20 DirAttributes currentFileAttr = attributes.peek().clone();
106 DirAttributes newAttr = attributes.peek().clone();
/openjdk7/hotspot/test/compiler/7184394/
H A DTestAESBase.java111 expectedEncode = (byte[]) encode.clone();
112 expectedDecode = (byte[]) decode.clone();
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DSHA2.java87 this.state = base.state.clone();
91 public Object clone() { method in class:SHA2
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DImmutableGregorianDate.java215 public Object clone() { method in class:ImmutableGregorianDate
216 return super.clone();
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DRemoteMonitoredVm.java206 registered = (ArrayList)listeners.clone();
226 registered = (ArrayList)listeners.clone();
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
H A DDirectoryScannerConfig.java297 return (actions == null)?null:actions.clone();
308 this.actions = (actions == null)?null:actions.clone();
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMenuItemPeer.java109 public Object clone() { method in class:XMenuItemPeer.TextMetrics
111 return super.clone();
/openjdk7/jdk/src/solaris/classes/sun/net/dns/
H A DResolverConfigurationImpl.java224 return (List)searchlist.clone();
233 return (List)nameservers.clone();

Completed in 360 milliseconds

<<11121314151617181920>>