volumebarevent.java
来自「Java模仿千千静听音乐播放器源代码」· Java 代码 · 共 32 行
JAVA
32 行
package player.module;
public class VolumeBarEvent {
private Object source;
private int comparison;
private int value;
protected void setValue(int value) {
this.value = value;
}
public int getValue() {
return value;
}
protected void setComparison(int comparison) {
this.comparison = comparison;
}
public int getComparison() {
return comparison;
}
protected void setSource(Object source) {
this.source = source;
}
public Object getSource() {
return source;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?