10 lines
175 B
Java
10 lines
175 B
Java
|
package com.minres.scviewer.database;
|
||
|
|
||
|
public interface ITxEvent extends IWaveformEvent {
|
||
|
enum Type {BEGIN, END};
|
||
|
|
||
|
public ITx getTransaction();
|
||
|
|
||
|
public Type getType();
|
||
|
}
|