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 gov.nih.nci.iso21090.Cd.java

/**
 * Represents the iso CD type.
 *
 * TODO invariants check
 * translations cannot have original text
 * translations cannot have translations

From source file com.aw.core.format.NumberFormatter.java

/**
 * @author jcvergara
 *         15/11/2004
 */
public class NumberFormatter implements Formatter, Cloneable {

From source file velo.resource.general.HttpMethods.java

public class HttpMethods<E> extends ArrayList<HttpMethod> implements Cloneable, Serializable {

}

From source file MainClass.java

class ArrayMap extends AbstractMap implements Cloneable, Serializable {

    static class Entry implements Map.Entry {
        protected Object key, value;

        public Entry(Object key, Object value) {

From source file net.zypr.api.vo.GenericVO.java

public abstract class GenericVO implements Cloneable {
    protected transient PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport(this);

    public void addPropertyChangeListener(PropertyChangeListener propertyChangeListener) {
        propertyChangeSupport.addPropertyChangeListener(propertyChangeListener);
    }

From source file org.onepf.oms.data.Purchase.java

/**
 * Represents an in-app billing purchase.
 */
public class Purchase implements Cloneable {

    String _orderId;

From source file org.sipfoundry.sipxconfig.domain.Domain.java

/**
 * Single holder of domain name
 */
public class Domain extends BeanWithId implements DeployConfigOnEdit, Cloneable {
    private static final int SECRET_SIZE = 18;

From source file FastArray.java

public class FastArray implements Cloneable {
    private Object[] data;
    public int size;
    public static final FastArray EMPTY_LIST = new FastArray(0);

    public FastArray(int initialCapacity) {

From source file org.gatherdata.commons.util.Seal.java

/**
 * A Seal contains a message digest calculated with an algorithm recognized by the 
 * <a href="http://java.sun.com/j2se/1.4.2/docs/guide/security/CryptoSpec.html#AppA">Java Cryptography Architecture</a>. 
 * 
 * Note that because the Seal operates on Serializable data rather than a raw byte stream, the calculated digest will
 * be different than the equivalent calculation for primtitive types and strings because it includes object de-serialization

From source file com.vaadin.addon.jpacontainer.testdata.Address.java

/**
 * Embeddable Java bean for testing.
 * 
 * @author Petter Holmstrm (Vaadin Ltd)
 * @since 1.0
 */