List of usage examples for java.lang Cloneable interface-usage
From source file it.unibas.spicy.model.datasource.Duplication.java
public class Duplication implements Cloneable { private static Log logger = LogFactory.getLog(Duplication.class); private PathExpression originalPath; private PathExpression clonePath;
From source file com.agimatec.validation.model.MetaBean.java
/**
* Description: the meta description of a bean or class.
* the class/bean itself can have a map of features and an array of metaproperties.<br/>
* User: roman.stumm <br/>
* Date: 06.07.2007 <br/>
* Time: 09:44:31 <br/>
From source file org.lamop.riche.model.WorkEntity.java
/** * * @author clril */ @Entity //@JsonIdentityInfo(generator = ObjectIdGenerators.IntSequenceGenerator.class,
From source file com.adaptris.core.interceptor.MessageStatistic.java
/** * A message statistic stored by a {@link MessageMetricsInterceptorImpl} instances. * * @config interceptor-message-statistic */ @XStreamAlias("interceptor-message-statistic")
From source file org.jboss.dashboard.ui.resources.Envelope.java
/** * */ public class Envelope extends GraphicElement implements Comparable, Cloneable { private static transient org.apache.commons.logging.Log log = org.apache.commons.logging.LogFactory .getLog(Envelope.class.getName());
From source file com.trellmor.berrytube.ChatUser.java
/** * Encapsulates a chat user * * @author Daniel Triendl */ public class ChatUser implements Cloneable {
From source file nl.strohalm.cyclos.utils.Pair.java
/**
* A pair of two values
* @author luis
*
* @param <T1> The first value type
* @param <T2> The second value type
From source file Vector3f.java
/**
* Implements an Vector in 3D space.
*
* @author Ralf Petring
* @author funsheep
*/
From source file com.jaspersoft.jasperserver.search.service.RepositorySearchResult.java
/** * Created by stas on 4/22/14. */ public interface RepositorySearchResult<T> extends Cloneable { boolean isFull();
From source file edu.northwestern.bioinformatics.studycalendar.domain.Population.java
/** * @author Rhett Sutphin */ @Entity @GenericGenerator(name = "id-generator", strategy = "native", parameters = { @Parameter(name = "sequence", value = "seq_populations_id") })