📄 volumebarevent.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -