progressbarevent.java

来自「千千静音源码功能很强大外面很美观值得一看」· Java 代码 · 共 31 行

JAVA
31
字号
package eb.cstop.swing;

public class ProgressBarEvent {
	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 + -
显示快捷键?