List of usage examples for java.lang Cloneable interface-usage
From source file com.apipulse.bastion.actors.messages.StepMessage.java
/** * The message wrapper. It is meant to contain the data and the context. */ public class StepMessage implements Cloneable { /** * The actual data
From source file de.taimos.dvalin.interconnect.model.InterconnectObject.java
/** * Interface that must be implemented by all objects that are transported via the interconnect */ @JsonTypeInfo(use = JsonTypeInfo.Id.CLASS, include = JsonTypeInfo.As.PROPERTY, property = "@class") public interface InterconnectObject extends Serializable, Cloneable {
From source file gov.nih.nci.iso21090.Any.java
/** * Represents the iso Any type. * @author Scott Miller */ @SuppressWarnings("PMD.AbstractNaming") public abstract class Any implements Serializable, Cloneable {
From source file hip.ch3.seqfile.writable.StockPriceWritable.java
/** * * @author bchandley */ public class StockPriceWritable implements WritableComparable<StockPriceWritable>, Cloneable {
From source file com.surveypanel.form.validation.Validator.java
/** * @author stanpanza * */ public abstract class Validator implements Cloneable {
From source file gov.nih.nci.iso21090.En.java
/** * Represents the En ISO datatype. * @author lpower */ public class En extends Any implements Cloneable {
From source file gov.nih.nci.iso21090.Tel.java
/** * Represents the iso TEL data type. * @author lpower */ public class Tel extends Any implements Cloneable {
From source file org.gatherdata.commons.security.Seal.java
/**
* A Seal contains a message digest calculated with an algorithm recognized by the
* <a href="http://java.sun.com/j2se/1.4.2/docs/guide/security/CryptoSpec.html#AppA">Java Cryptography Architecture</a>.
*
* Note that because the Seal operates on Serializable data rather than a raw byte stream, the calculated digest will
* be different than the equivalent calculation for primtitive types and strings because it includes object de-serialization
From source file org.globus.axis.transport.commons.ExtendedHostConfiguration.java
public class ExtendedHostConfiguration extends HostConfiguration implements Cloneable { private String[] paramList; public ExtendedHostConfiguration(ExtendedHostConfiguration host) { super(host);
From source file org.okinawaopenlabs.ofpm.json.device.PortData.java
public class PortData extends PortInfo implements Cloneable { private String deviceName; @Override public PortData clone() { PortData newObj = (PortData) super.clone();