rename BLANK to EMPY, enhances separator render, fixes menu selection
This commit is contained in:
@ -18,6 +18,15 @@ import java.util.List;
|
||||
public class EmptyWaveform implements IWaveform {
|
||||
|
||||
private String label = "";
|
||||
|
||||
|
||||
public EmptyWaveform() {
|
||||
}
|
||||
|
||||
public EmptyWaveform(String label) {
|
||||
this.label = label;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addPropertyChangeListener(PropertyChangeListener l) {
|
||||
}
|
||||
@ -96,12 +105,12 @@ public class EmptyWaveform implements IWaveform {
|
||||
|
||||
@Override
|
||||
public WaveformType getType() {
|
||||
return WaveformType.BLANK;
|
||||
return WaveformType.EMPTY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getKind() {
|
||||
return "BLANK";
|
||||
return "separator";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -22,5 +22,5 @@ public enum WaveformType {
|
||||
/** The filter. */
|
||||
FILTER,
|
||||
/** The blank line. */
|
||||
BLANK
|
||||
EMPTY
|
||||
}
|
||||
|
Reference in New Issue
Block a user