Example usage for java.lang Cloneable interface-usage

List of usage examples for java.lang Cloneable interface-usage

Introduction

In this page you can find the example usage for java.lang Cloneable interface-usage.

Usage

From source file com.dongfang.net.http.client.entity.BodyParamsEntity.java

/**
 * Author: wyouflf Date: 13-7-26 Time: ?4:21
 */
public class BodyParamsEntity extends AbstractHttpEntity implements Cloneable {

    protected byte[] content;

From source file delfos.dataset.basic.rating.Rating.java

/**
 * Clase que encapsula el almacenamiento en memoria de una valoracin que un usuario ha hecho sobre un producto.
 *
 * @author jcastro-inf ( https://github.com/jcastro-inf )
 *
 * @version 1.0 Unknown date.

From source file com.intuit.wasabi.analyticsobjects.statistics.DailyStatistics.java

/**
 * Daily statistics wrapper class
 * 
 * {@see ExperimentBasicStatistics}
 * {@see ExperimentStatistics}
 */

From source file io.cloudslang.engine.queue.entities.ExecutionMessage.java

/**
 * User:
 * Date: 10/09/12
 * Time: 11:11
 */
public class ExecutionMessage implements Message, Cloneable {

From source file org.voltdb.planner.ParsedColInfo.java

/**
 * This class represents an instance of a column in a parsed statement.
 * Note that an instance might refer to a downstream temp table, rather
 * than a column in a persistent table.
 *
 * This class is pretty C-struct-like, with all public members and a

From source file eu.debooy.natuur.domain.RangDto.java

/**
 * @author Marco de Booij
 */
@Entity
@Table(name = "RANGEN", schema = "NATUUR")
@NamedQueries({ @NamedQuery(name = "vanaf", query = "select r from RangDto r where r.niveau>:niveau") })

From source file org.apache.kylin.invertedindex.index.TableRecord.java

/**
 * @author yangli9, honma
 *         <p/>
 *         TableRecord extends RawTableRecord by decorating it with a
 *         TableRecordInfo
 */

From source file se.trixon.toolbox.idiot.task.Task.java

/**
 *
 * @author Patrik Karlsson
 */
public class Task implements Comparable<Task>, Runnable, Cloneable {

From source file com.revolsys.ui.web.config.MenuItem.java

public class MenuItem implements Cloneable, Comparable {
    private static final Logger log = Logger.getLogger(MenuItem.class);

    private String anchor;

    private Expression condition;

From source file org.cesecore.certificates.certificateprofile.CertificatePolicy.java

/** Class encapsulating the CertificatePolicy X509 certificate extensions. See rfc3280.
 * Contains an OID and optionally a policy qualifier. Several CertificatePolicy classes 
 * can be created with the same oid, for different qualifiers
 * 
 * @version $Id: CertificatePolicy.java 17625 2013-09-20 07:12:06Z netmackan $
 */