2020-11-28 10:22:22 +01:00
|
|
|
package com.minres.scviewer.database;
|
|
|
|
|
|
|
|
public interface IEvent {
|
|
|
|
|
|
|
|
public IEvent duplicate() throws CloneNotSupportedException;
|
|
|
|
|
|
|
|
public EventKind getKind();
|
|
|
|
|
2020-11-28 14:08:34 +01:00
|
|
|
public WaveformType getType();
|
2020-11-28 10:22:22 +01:00
|
|
|
|
|
|
|
}
|