cz.cuni.amis.pogamut.multi.communication.worldview.property
Class LongProperty

java.lang.Object
  extended by cz.cuni.amis.pogamut.multi.communication.worldview.property.AbstractSharedProperty<java.lang.Long>
      extended by cz.cuni.amis.pogamut.multi.communication.worldview.property.LongProperty
All Implemented Interfaces:
ISharedProperty<java.lang.Long>, java.lang.Cloneable

public class LongProperty
extends AbstractSharedProperty<java.lang.Long>


Nested Class Summary
 
Nested classes/interfaces inherited from class cz.cuni.amis.pogamut.multi.communication.worldview.property.AbstractSharedProperty
AbstractSharedProperty.GenericPropertyUpdate
 
Field Summary
 
Fields inherited from class cz.cuni.amis.pogamut.multi.communication.worldview.property.AbstractSharedProperty
compositeClass, dirty, propertyId, value
 
Constructor Summary
LongProperty(LongProperty other)
           
LongProperty(WorldObjectId objId, java.lang.String identifier, java.lang.Long value, java.lang.Class compositeClass)
           
 
Method Summary
 ISharedProperty<java.lang.Long> clone()
          Must return an exact duplicate of this ISharedProperty, this will be used to create old versions of SharedProperties in the worldView.
protected  java.lang.Long cloneValue()
          Every descendant must implement this by calling value.clone() or otherwise returning a new copy of value.
 java.lang.Class<?> getPropertyValueClass()
          Returns class of the property value.
 
Methods inherited from class cz.cuni.amis.pogamut.multi.communication.worldview.property.AbstractSharedProperty
createUpdateEvent, equals, getCompositeClass, getObjectId, getPropertyId, getValue, hashCode, isDirty, setDirty, setValue
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LongProperty

public LongProperty(WorldObjectId objId,
                    java.lang.String identifier,
                    java.lang.Long value,
                    java.lang.Class compositeClass)

LongProperty

public LongProperty(LongProperty other)
Method Detail

getPropertyValueClass

public java.lang.Class<?> getPropertyValueClass()
Description copied from interface: ISharedProperty
Returns class of the property value. Used to enforce value-class checks.

Returns:

cloneValue

protected java.lang.Long cloneValue()
Description copied from class: AbstractSharedProperty
Every descendant must implement this by calling value.clone() or otherwise returning a new copy of value.

Specified by:
cloneValue in class AbstractSharedProperty<java.lang.Long>
Returns:

clone

public ISharedProperty<java.lang.Long> clone()
Description copied from interface: ISharedProperty
Must return an exact duplicate of this ISharedProperty, this will be used to create old versions of SharedProperties in the worldView.

Specified by:
clone in interface ISharedProperty<java.lang.Long>
Specified by:
clone in class AbstractSharedProperty<java.lang.Long>
Returns: