代码搜索:clone
找到约 4,459 项符合「clone」的源代码
代码结果 4,459
www.eeworm.com/read/100409/6270165
java commentimpl.java
/**
* org/ozone-db/xml/dom/CommentImpl.java
*
* The contents of this file are subject to the OpenXML Public
* License Version 1.0; you may not use this file except in compliance
* with the Licens
www.eeworm.com/read/100409/6270178
java entityreferenceimpl.java
/**
* org/ozone-db/xml/dom/EntityReferenceImpl.java
*
* The contents of this file are subject to the OpenXML Public
* License Version 1.0; you may not use this file except in compliance
* with th
www.eeworm.com/read/100409/6270249
java documentfragmentimpl.java
/**
* org/ozone-db/xml/dom/DocumentFragmentImpl.java
*
* The contents of this file are subject to the OpenXML Public
* License Version 1.0; you may not use this file except in compliance
* with t
www.eeworm.com/read/100409/6270251
java attrimpl.java
/**
* org/ozone-db/xml/dom/AttrImpl.java
*
* The contents of this file are subject to the OpenXML Public
* License Version 1.0; you may not use this file except in compliance
* with the License.
www.eeworm.com/read/100409/6270252
java processinginstructionimpl.java
/**
* org/ozone-db/xml/dom/ProcessingInstructionImpl.java
*
* The contents of this file are subject to the OpenXML Public
* License Version 1.0; you may not use this file except in compliance
* w
www.eeworm.com/read/100409/6270253
java cdatasectionimpl.java
/**
* org/ozone-db/xml/dom/CDATASectionImpl.java
*
* The contents of this file are subject to the OpenXML Public
* License Version 1.0; you may not use this file except in compliance
* with the L
www.eeworm.com/read/100409/6270261
java dtddocument.java
/**
* org/ozoneDB/xml/DTDDocument.java
*
* The contents of this file are subject to the OpenXML Public
* License Version 1.0; you may not use this file except in compliance
* with the License. Yo
www.eeworm.com/read/486925/6520704
java sheep.java
package com.javapatterns.prototype.cloneexample;
public class Sheep implements Cloneable
{
private String name = "Dolly";
public Object clone() throws CloneNotSupportedException
www.eeworm.com/read/486925/6520717
java prototype.java
package com.javapatterns.prototype;
public interface Prototype extends Cloneable
{
Object clone();
}
www.eeworm.com/read/486925/6520720
java concreteprototype.java
package com.javapatterns.prototype.manager;
public class ConcretePrototype implements Prototype
{
public synchronized Object clone()
{
Prototype temp = null;
try
{
temp =