List of usage examples for java.lang Cloneable interface-usage
From source file onl.area51.httpd.rest.JsonEntity.java
/** * Entity for returning Json objects * * @author peter */ public class JsonEntity extends StringEntity implements Cloneable {
From source file com.top.xutils.http.client.entity.BodyParamsEntity.java
/** * Author: wyouflf * Date: 13-7-26 * Time: ?4:21 */ public class BodyParamsEntity extends AbstractHttpEntity implements Cloneable {
From source file com.twosigma.beaker.chart.Graphics.java
public abstract class Graphics implements Serializable, Cloneable { private final String uid; private boolean visible = true; private String yAxisName = null; private GraphicsActionListener onClickListener; private String clickTag;
From source file net.sourceforge.jasa.agent.strategy.AbstractTradingStrategy.java
/**
* <p>
* An abstract implementation of the Strategy interface that provides skeleton
* functionality for making trading decisions.
* </p>
*
From source file ch.admin.vbs.cube.core.vm.Vm.java
public class Vm implements Cloneable { private VmState vmState; private Container vmContainer; private Container runtimeContainer; private VmDescriptor descriptor; private int progress;
From source file nl.strohalm.cyclos.utils.conversion.NumberConverter.java
/** * Converter for formatted numbers * @author luis */ public class NumberConverter<T extends Number> implements Converter<T>, Cloneable {
From source file edu.northwestern.bioinformatics.studycalendar.web.template.period.PeriodActivitiesGridRow.java
/** * @author Rhett Sutphin */ public class PeriodActivitiesGridRow implements Comparable<PeriodActivitiesGridRow>, Cloneable { private final Logger log = LoggerFactory.getLogger(getClass());
From source file ml.shifu.shifu.container.meta.MetaItem.java
/** * ConfigMeta class */ @JsonIgnoreProperties(ignoreUnknown = true) @JsonInclude(Include.NON_NULL) public class MetaItem implements Cloneable {
From source file com.mirth.connect.model.MessageObject.java
@XStreamAlias("messageObject") public class MessageObject implements Serializable, Cloneable, Auditable { /** * Need to set this so that messages written to the queue will not fail with new versions of this class */ private static final long serialVersionUID = 2451629582991455311L;
From source file org.jitsi.meet.test.base.JitsiMeetUrl.java
/**
* Convenience class for dealing with Jitsi Meet conference URL components.
*
* @author Pawel Domas
* @author George Politis
*/