List of usage examples for java.lang Cloneable interface-usage
From source file wilos.model.misc.wilosuser.Administrator.java
/** * This class represents the administrator of Wilos. It hasn't been tested because it was too light. * @author Yoann Lopes * @author MiKaMiKaZe */ public class Administrator extends WilosUser implements Cloneable {
From source file sadl.models.pta.HalfClosedInterval.java
public class HalfClosedInterval implements Cloneable { protected double min; protected double max; public HalfClosedInterval(double min, double max) {
From source file com.intuit.wasabi.experimentobjects.PageExperiment.java
public class PageExperiment implements Cloneable { @ApiModelProperty(value = "unique experiment ID", required = true) private Experiment.ID id; @ApiModelProperty(value = "experiment label; unique within the application", required = true) private Experiment.Label label;
From source file net.gtaun.shoebill.data.Vector2D.java
/** * * * @author JoJLlmAn */ public class Vector2D implements Cloneable, Serializable {
From source file io.kodokojo.model.ProjectConfiguration.java
public class ProjectConfiguration implements Cloneable, Serializable { private final String identifier; private final String entityIdentifier;
From source file com.itemanalysis.psychometrics.histogram.Bin.java
/**
* A class representing a single histogram bin. A bin is characterized by a lower bound, upper bound, frequency
* count, and bin width. This class form a basic element in constructing a histogram. The bin can be lower inclusive,
* upper inclusive, or both. The constructors require the user to specify whether the bin is lower or upper inclusive.
* Bin frequencies are counted incrementally. Thus, a bin is storeless in that is does not store each individual
* value in the bin. It only records summary statistics.
From source file com.thinkbiganalytics.util.PartitionKey.java
/** */ public class PartitionKey implements Cloneable { private String alias; private String key;
From source file BoolStack.java
/** * Simple stack for boolean values. * @xsl.usage internal */ public final class BoolStack implements Cloneable {
From source file com.twosigma.beakerx.chart.xychart.plotitem.Text.java
/** * Text */ public class Text implements Serializable, Cloneable { private Number x = 0.0d;
From source file net.gtaun.shoebill.data.Vector3D.java
/** * * * @author JoJLlmAn */ public class Vector3D extends Vector2D implements Cloneable, Serializable {