?? valueevent.java
字號:
package model;
import java.util.EventObject;
import java.util.List;
public class ValueEvent extends EventObject{
private static final long serialVersionUID = 8592613232193988815L;
/**
* Array of values which have changed
*/
private List<Double> valuesChanged;
/**
* Constructor with source and changed values
* @param source the source of the event
* @param pointsChanged the values changed in the event
*/
public ValueEvent(Object source, List<Double> valuesChanged) {
super(source);
this.valuesChanged = valuesChanged;
}
/**
* Gets the values changed
* @return the array of points which have changed
*/
public List<Double> getPointsChanged() {
return valuesChanged;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -