List of usage examples for java.lang Cloneable interface-usage
From source file MD4.java
/**
* Implements the MD4 message digest algorithm in Java.
* <p>
* <b>References:</b>
* <ol>
* <li> Ronald L. Rivest,
From source file io.spring.initializr.metadata.ServiceCapability.java
/**
* Defines a capability of the initializr service. Each capability is defined by a id and
* a {@link ServiceCapabilityType type}.
*
* @author Stephane Nicoll
*/
From source file padl.motif.repository.Memento.java
/** * @author Foutse Khomh * @since 2007/03/01 */ public class Memento extends BehaviouralMotifModel implements Cloneable, IDesignMotifModel { private static final char[] CARETAKER = "Caretaker".toCharArray();
From source file com.vmware.appfactory.file.upload.ProgressListenerImpl.java
/**
* Implementing the ProgressListener, used to store values related to the
* upload progress.
*
* @see ProgressListener
*/
From source file net.gtaun.shoebill.data.Time.java
/** * * * @author MK124 */ public class Time implements Cloneable, Serializable {
From source file org.okinawaopenlabs.ofpm.json.device.Node.java
public class Node implements Cloneable { private String deviceName; private String deviceType; private String location; private String tenant;
From source file com.adaptris.core.MetadataElement.java
/**
* <p>
* A key-value pair of <code>String</code> metadata. Instances of this class are used by
* implementations of <code>AdaptrisMessage</code> to store metadata. Semantic equality of
* <code>MetadataElement</code> s is based on the value of the 'key' only.
* </p>
From source file edu.northwestern.bioinformatics.studycalendar.domain.ScheduledActivityState.java
/** * @author Rhett Sutphin */ @Entity @GenericGenerator(name = "id-generator", strategy = "native", parameters = { @Parameter(name = "sequence", value = "seq_scheduled_activity_stat_id") })
From source file SimpleSet.java
public class SimpleSet extends AbstractSet implements Cloneable { Object[] elementObjects; int count = 0; public SimpleSet() { this(2);
From source file org.opendaylight.controller.forwardingrulesmanager.FlowEntry.java
/**
* Represents a flow applications request Forwarding Rules Manager to install on
* a network node. A FlowEntry is constituted of a flow (match + actions), the
* target network node, and the flow name. It also includes a group name. For
* instance the flows constituting a policy all share the same group name.
*/