JTemporal Home
Tutorial

net.sf.jtemporal.spi
Interface TimedObjectFactory<V>

Type Parameters:
V - the value type held by the TimedObject

public interface TimedObjectFactory<V>

Creates and destroys a TimedObject, used typically by ORMTemporalAttributeStorage to ask to the ORM tool to add or remove a row to the database.


Method Summary
 TimedObject<V> create(Period p, V value)
           
 void destroy(TimedObject<V> to)
           
 

Method Detail

create

TimedObject<V> create(Period p,
                      V value)

destroy

void destroy(TimedObject<V> to)

JTemporal Home
Tutorial