make ITxGenerator as stream

This commit is contained in:
2021-01-09 10:34:22 +01:00
parent 90f45c698f
commit d970d07048
11 changed files with 333 additions and 221 deletions

View File

@ -26,6 +26,8 @@ public interface IWaveform extends IHierNode {
public WaveformType getType();
public String getKind();
public int getWidth();
}

View File

@ -12,8 +12,8 @@ package com.minres.scviewer.database.tx;
import com.minres.scviewer.database.IWaveform;
public interface ITxGenerator {
public Long getId();
public interface ITxGenerator extends IWaveform {
public IWaveform getStream();
public String getName();
}