List of usage examples for java.lang Cloneable interface-usage
From source file org.snaker.engine.entity.Task.java
/** * * @author yuqs * @version 1.0 */ public class Task implements Serializable, Cloneable {
From source file uk.gov.gchq.gaffer.function.processor.Processor.java
/**
* A <code>Processor</code> executes {@link uk.gov.gchq.gaffer.function.Function}s against {@link uk.gov.gchq.gaffer.function.Tuple}s. It
* uses {@link uk.gov.gchq.gaffer.function.context.FunctionContext}s to bind functions to data in tuples.
*
* @param <R> The type of reference used by tuples.
* @param <C> The type of {@link FunctionContext} to use.
From source file org.cesecore.certificates.certificateprofile.PKIDisclosureStatement.java
/** * Contains a single URI/language pair of a PKI disclosure statement. * @version $Id$ */ public final class PKIDisclosureStatement implements Serializable, Cloneable {
From source file net.sourceforge.jabm.report.PayoffMap.java
@SuppressWarnings("StringConcatenationInsideStringBufferAppend") public class PayoffMap implements Serializable, Cloneable { protected LinkedHashMap<Strategy, StatisticalSummary> payoffs = new LinkedHashMap<Strategy, StatisticalSummary>(); protected Vector<Strategy> strategyIndex = new Vector<Strategy>();
From source file padl.motif.repository.Facade.java
/** * @author Herv Albin-Amiot * @author Yann-Gal Guhneuc */ public class Facade extends StructuralMotifModel implements Cloneable, IDesignMotifModel { private static final char[] AFACADE_SIDE_OPERATION_ON = "aFacadeSideOperationOn".toCharArray();
From source file org.geoserver.security.keycloak.GeoServerKeycloakFilterConfig.java
/** * Configuration for Keycloak authentication, wrapped for use with GeoServer. This is essentially * the base {@link AdapterConfig} with some additional bits to help xstream read/write XML. The * adapter config should be input exactly as provided by the Keycloak server. */ public class GeoServerKeycloakFilterConfig extends SecurityFilterConfig
From source file net.sourceforge.jabm.strategy.AbstractStrategy.java
public abstract class AbstractStrategy implements Strategy, Cloneable, Serializable { protected Agent agent; protected EventScheduler scheduler;
From source file com.sec.ose.osi.ui.frm.main.report.project.ProjectListModel.java
/** * ProjectListModel * @author suhyun47.kim, hankido.lee * */ @SuppressWarnings("unchecked")
From source file org.force66.beantester.testbeans.BaseBean.java
/** * Base Value Object implementing equals(), hashCode(), toString() and clone() * @author D. Ashmore * */ public abstract class BaseBean implements Cloneable {
From source file com.codenjoy.dojo.tetris.model.TetrisFigure.java
public class TetrisFigure implements Figure, Cloneable { private int centerX; private int centerY; private Type type; public String[] rows = new String[] { "#" }; private int[] codes;