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 ml.shifu.shifu.container.meta.MetaGroup.java

/**
 * ItemMetaGroup class
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class MetaGroup implements Cloneable {
    private String group;

From source file com.mgmtp.perfload.loadprofiles.model.AbstractNamedObject.java

/**
 * @author rnaegele
 */
public abstract class AbstractNamedObject<T extends AbstractNamedObject<T>> implements Comparable<T>, Cloneable {

    protected String name;

From source file org.codehaus.groovy.grails.commons.metaclass.ClosureInvokingDynamicMethod.java

/**
 * An implementation of DynamicMethodInvocation that invoces a closure
 *
 * @author Graeme Rocher
 * @since 0.4
 *        <p/>

From source file gdsc.core.utils.PseudoRandomGenerator.java

/**
 * Contains a set of random numbers that are reused in sequence
 */
public class PseudoRandomGenerator extends AbstractRandomGenerator implements Cloneable {
    protected final double[] sequence;

From source file net.paissad.minus.api.MinusHttpResponse.java

/**
 * Represents a class which holds a HTTP response from a HTTP request (GET or
 * POST) and the {@link Cookie} which was returned by the server during the HTTP
 * request.
 * <p>
 * <b>Note</b>: This class is immutable and is aimed to be used internally, and

From source file gov.nih.nci.iso21090.Adxp.java

/**
 * Represents the iso data type.
 * @author lpower
 */
public class Adxp implements Serializable, Cloneable {

From source file com.liferay.maven.plugins.util.ContextReplace.java

/**
 * @author Brian Wing Shun Chan
 */
public class ContextReplace implements Cloneable {

    public ContextReplace() {

From source file com.strato.hidrive.api.utils.multipart.MultipartEntity.java

public class MultipartEntity extends AbstractHttpEntity implements Cloneable {

    /* package */ static final String CRLF = "\r\n";

    private List<Part> parts = new ArrayList<Part>();

From source file gov.nih.nci.iso21090.Ivl.java

/**
 * Represents iso data type IVL.
 * @author lpower
 * @param <T>
 */
public final class Ivl<T extends Qty> extends QSet<T> implements Cloneable {

From source file org.mule.test.infrastructure.process.MuleContextProcessBuilder.java

public class MuleContextProcessBuilder implements Cloneable, ConfigurableProcessBuilder {

    protected transient final static Log logger = LogFactory.getLog(MuleContextProcessBuilder.class);

    public static final String MULE_CONTEXT_CONFIGURATION_ID_KEY = MuleProperties.SYSTEM_PROPERTY_PREFIX
            + "serverId";