List of usage examples for java.lang Cloneable interface-usage
From source file eu.debooy.natuur.domain.WaarnemingDto.java
/** * @author Marco de Booij */ @Entity @Table(name = "WAARNEMINGEN", schema = "NATUUR") public class WaarnemingDto extends Dto implements Comparable<WaarnemingDto>, Cloneable {
From source file org.opennms.features.newts.converter.rrd.converter.RrdEntry.java
class RrdEntry implements Cloneable { private TreeMap<String, Double> m_entryMap; private long m_timestamp; private List<String> m_dsNames; RrdEntry(final long timestamp, final List<String> dsNames) {
From source file LongCounter.java
/**
* A long integer counter class.
*
* @version <tt>$Revision: 2800 $</tt>
* @author <a href="mailto:jason@planet57.com">Jason Dillon</a>
*/
From source file com.qualogy.qafe.bind.commons.type.Parameter.java
/**
* A parameter represents any form of data used in a call.
*
* A parameter typically has a name and ref (to a piece of data) or static value.
* A parameter also could have a type supplied through its value property, if
* not supplied its assumable the type for this parameter is the instanceof the data
From source file eu.debooy.sedes.domain.LandnaamDto.java
/** * @author Marco de Booij */ @Entity @Table(name = "LANDNAMEN", schema = "SEDES") @IdClass(LandnaamPK.class)
From source file org.okinawaopenlabs.ofpm.json.topology.logical.LogicalTopology.java
public class LogicalTopology implements Cloneable { private List<OfpConDeviceInfo> nodes; private List<LogicalLink> links; private List<getnetwork> OuterTag_List; /* Setters and Getters */
From source file objenome.solver.evolve.Population.java
/** * A <code>Population</code> is an ordered collection of {@link Organism}s. */ public class Population<I extends Organism> implements Iterable<I>, Cloneable { // TODO: make it serializable
From source file com.haulmont.cuba.core.app.cache.CacheSet.java
/** * Set of elements for ObjectsCache. * * @deprecated Will be removed in release 7.0 */ @SuppressWarnings({ "unused" })
From source file wilos.model.spem2.element.Element.java
/**
*
* Every class defined in this specification is derived from Element. In other
* words Element is the root generalization for all UMA classes and defines a
* common set of attributes inherited by every other element type of this model.
*
From source file nl.strohalm.cyclos.utils.TimePeriod.java
/** * Defines a time period, with a number and a field. It represents an amount of time in the specified unit, i.e.: 5 DAYS. * @author luis */ public class TimePeriod implements Serializable, Cloneable {