List of usage examples for java.lang Cloneable interface-usage
From source file org.force66.vobase.ValueObjectBase.java
/**
* Base Value object abbreviating value object code.
*
* @author D. Ashmore
*
*/
From source file com.evolveum.midpoint.model.api.context.EvaluationOrder.java
/** * @author semancik * @author mederly */ public interface EvaluationOrder extends DebugDumpable, ShortDumpable, Cloneable {
From source file com.twosigma.beaker.chart.xychart.CombinedPlot.java
/** * CombinedPlot * */ public class CombinedPlot implements Cloneable, Serializable { private int initWidth = 640;
From source file org.getobjects.eocontrol.EOGlobalID.java
/**
* EOGlobalID
* <p>
* An EOGlobalID is an identifier for an object managed by EOControl or
* EOAccess. The most common subclass is EOKeyGlobalID which is often used
* to represent a primary key in a relational database.
From source file org.okinawaopenlabs.ofpm.json.device.DeviceInfo.java
public class DeviceInfo extends Node implements Cloneable { private String datapathId; private String ofcIp; public String getDatapathId() { return datapathId;
From source file edu.umd.cfar.lamp.viper.geometry.Ellipse.java
/** * An ellipse. * It does not support the functions * necessary for advanced comparison (union, etc.) yet. */ public class Ellipse implements Cloneable, HasCentroid, Moveable {
From source file org.sparkcommerce.openadmin.web.form.entity.EntityFormAction.java
public class EntityFormAction implements Cloneable { public static final String ADD = "ADD"; public static final String SAVE = "SAVE"; public static final String DELETE = "DELETE"; public static final String PREVIEW = "PREVIEW";
From source file com.twosigma.beaker.Chart.java
public class Chart implements Cloneable, Serializable { protected int initWidth = 640; protected int initHeight = 480; protected String title; protected Boolean showLegend; protected boolean useToolTip = true;
From source file net.gtaun.shoebill.data.Velocity.java
/** * * * @author MK124 */ public class Velocity extends Vector3D implements Cloneable, Serializable {
From source file de.schildbach.game.GamePosition.java
/** * Mutable representation of a game position. Subclasses may be mutable, too. * * @author Andreas Schildbach */ public abstract class GamePosition implements Cloneable, Serializable {