List of usage examples for java.lang Cloneable interface-usage
From source file wilos.model.misc.wilosuser.ProjectDirector.java
/** * This class represents a project director using Wilos. * * @author Yoann Lopes */ public class ProjectDirector extends WilosUser implements Cloneable {
From source file com.moxm.frameworks.http.client.entity.BodyParamsEntity.java
/** * Author: richard.ma * Date: 13-7-26 * Time: ?4:21 */ public class BodyParamsEntity extends AbstractHttpEntity implements Cloneable {
From source file org.geowebcache.config.BlobStoreConfig.java
/**
* Base class for configuration and factory of concrete {@link BlobStore} implementations.
* <p>
* Each realization of {@link BlobStore} should have a matching {@link BlobStoreConfig} subclass
* that acts both as configuration and {@link #createInstance() factory}.
* <p>
From source file wilos.model.misc.wilosuser.ProcessManager.java
/** * This class represents a process manager using Wilos. * * @author Yoann Lopes */ public class ProcessManager extends WilosUser implements Cloneable {
From source file org.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 com.mousefeed.eclipse.preferences.invocation.ActionOnWrongInvocationMode.java
/**
* Stores action-specific preferences for handling action invocation using
* wrong mode.
* Data stored in this class somewhat overlaps with {@link AbstractActionDesc}.
*
* @author Andriy Palamarchuk
From source file org.wso2.carbon.humantask.core.utils.GUID.java
/**
* This class is used to generate globally unique IDs. The requirements for
* global uniqueness are as follows:
* <p/>
* <pre>
* 1) The time on any machine is never set back.
From source file com.haulmont.cuba.gui.app.security.entity.MultiplePermissionTarget.java
@com.haulmont.chile.core.annotations.MetaClass(name = "sec$MultipleTarget") @SystemLevel public class MultiplePermissionTarget extends AbstractPermissionTarget implements EntityPermissionTarget, Cloneable { public static final int SHOW_PERMISSIONS_COUNT = 8;
From source file it.unibas.spicy.model.datasource.SelectionCondition.java
public class SelectionCondition implements Cloneable { private static Log logger = LogFactory.getLog(SelectionCondition.class); private List<PathExpression> setPaths = new ArrayList<PathExpression>(); private Expression condition;
From source file poisondog.tree.BinaryTree.java
/** * ? * @author Adam Huang <poisondog@gmail.com> */ public class BinaryTree<E> implements Cloneable { private BinaryTree<E> parent;