List of usage examples for java.lang Cloneable interface-usage
From source file padl.motif.repository.FactoryMethod.java
/** * @author Foutse Khomh * @since 2007/03/01 */ public class FactoryMethod extends CreationalMotifModel implements Cloneable, IDesignMotifModel { public static final char[] CREATOR = "Creator".toCharArray();
From source file org.apache.tajo.algebra.TimeValue.java
public class TimeValue implements Cloneable { @Expose @SerializedName("Hour") private String hours; @Expose @SerializedName("Minute")
From source file com.jdom.get.stuff.done.domain.TaskList.java
public class TaskList implements LocalTaskList, Comparable<TaskList>, Cloneable { public static final long DEFAULT_LAST_SYNC_TIME = -1L; public static final long DEFAULT_LAST_UPDATE_TIME = -1L; private String name; private String remoteId; private long lastSyncTime = DEFAULT_LAST_SYNC_TIME;
From source file org.pentaho.di.trans.steps.file.BaseFileInputAdditionalField.java
/** * Additional fields settings. */ public class BaseFileInputAdditionalField implements Cloneable { /** Additional fields **/
From source file com.nesscomputing.httpclient.factory.httpclient4.BetterStringEntity.java
/** * A self contained, repeatable entity that obtains its content from * a {@link String}. */ public class BetterStringEntity extends AbstractHttpEntity implements Cloneable { protected final byte[] content;
From source file com.vaadin.addon.jpacontainer.testdata.EmbeddedIdPerson.java
/**
* Entity Java bean with Embedded ID for testing.
*
* @author Petter Holmstrm (Vaadin Ltd)
* @since 1.0
*/
From source file org.cubictest.model.Identifier.java
/**
* Identifier (e.g. label, ID, tooltip) that identifies a page element on a web page.
* The identifier does not have to be unique on the page, as several identifiers is usually combined
* to identify a page element on a page.
*
* @author SK Skytteren
From source file org.jspare.forvertx.web.collector.HandlerData.java
@Data @EqualsAndHashCode @Accessors(fluent = true) @NoArgsConstructor @AllArgsConstructor public class HandlerData implements Cloneable {
From source file it.unibas.spicy.model.datasource.FunctionalDependency.java
public class FunctionalDependency implements Cloneable { private static Log logger = LogFactory.getLog(FunctionalDependency.class); private List<PathExpression> leftPaths = new ArrayList<PathExpression>(); private List<PathExpression> rightPaths = new ArrayList<PathExpression>();
From source file org.dasein.cloud.util.requester.entities.DaseinEntity.java
/** * @author Vlad Munthiu */ public abstract class DaseinEntity<T> extends AbstractHttpEntity implements Cloneable { protected final byte[] content; protected final int length;