package com.itjw.txviewer.database; import java.util.List; import java.util.Set; public interface ITransaction { public Long getId(); public ITrGenerator getGenerator(); public EventTime getBeginTime(); public EventTime getEndTime(); public List getBeginAttrs(); public List getEndAttrs(); public List getAttributes(); public Set getNextInRelationship(RelationType rel); }