12 lines
195 B
Java
12 lines
195 B
Java
package com.minres.scviewer.database;
|
|
|
|
public interface IEvent {
|
|
|
|
public IEvent duplicate() throws CloneNotSupportedException;
|
|
|
|
public EventKind getKind();
|
|
|
|
public WaveformType getType();
|
|
|
|
}
|