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 org.apache.camel.component.avro.AvroConfiguration.java

public class AvroConfiguration implements Cloneable {

    private String host;
    private int port;
    private Protocol protocol;
    private String protocolLocation;

From source file org.colombbus.tangara.core.Version.java

/**
 * Manager of version build with four fields (integer, integer, integer, text)
 * <ul>
 * <li>major version</li>
 * <li>minor version</li>
 * <li>fix version</li>

From source file org.grouplens.lenskit.util.table.TableLayoutBuilder.java

/**
 * Construct a layout for a table.
 *
 * @author <a href="http://www.grouplens.org">GroupLens Research</a>
 * @since 0.10
 */

From source file it.unibas.spicy.model.mapping.rewriting.CoverageAtom.java

public class CoverageAtom implements Cloneable {

    private static Log logger = LogFactory.getLog(CoverageAtom.class);

    private List<FormulaAtom> originalAtoms = new ArrayList<FormulaAtom>();
    private List<FormulaAtom> coveringAtoms = new ArrayList<FormulaAtom>();

From source file org.pentaho.pms.schema.concept.types.localstring.LocalizedStringSettings.java

/**
 * @deprecated as of metadata 3.0. please see org.pentaho.metadata.model.concept.types.LocalizedString
 */
public class LocalizedStringSettings implements Cloneable {
    public static final LocalizedStringSettings EMPTY = new LocalizedStringSettings();

From source file de.mpg.mpi_inf.bioinf.netanalyzer.dec.Decorator.java

/**
 * Base class for all decorators in NetworkAnalyzer.
 * 
 * @author Yassen Assenov
 */
public abstract class Decorator implements Cloneable, XMLSerializable {

From source file com.adaptris.core.MessageLifecycleEvent.java

/**
 * <p>
 * Container for message lifecycle events (<code>MleMarker</code>s)
 * for implementations of <code>AdaptrisMessage</code>.
 * </p>
 * <p>

From source file org.springframework.cloud.netflix.ribbon.apache.RibbonApacheHttpRequest.java

/**
 * @author Christian Lohmann
 */
@Getter
public class RibbonApacheHttpRequest extends ContextAwareRequest implements Cloneable {

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

/**
 * DTO to save an estimate with a value and lower and upper boundaries
 *
 * * Fields:
 * <ul>
 * <li>Double: estimate value</li>

From source file BlockingQueue.java

/**
 * <P>A blocking queue, one that always "contains" elements.
 * If it is in fact empty, the pop() and peek() method will block until an
 * item is pushed.
 * <P><B>NOTE:</B> This class is thread safe.
 *