?? playframe.java
字號(hào):
package cn.ac.siat.dswatcher;
/**
* Created by IntelliJ IDEA.
* Author: Disheng
* Date: 2007-2-8
* Time: 11:46:02
* Institution: CGCL/ChinaGrid
* Description: To change this template use File | Settings | File Templates.
*/
public class PlayFrame {
long timestamp;
String processName;
Node from;
Node to;
public PlayFrame(long timestamp, String processName, Node from, Node to) {
this.processName = processName;
this.timestamp = timestamp;
this.from = from;
this.to = to;
}
public String getProcessName() {
return processName;
}
public void setProcessName(String processName) {
this.processName = processName;
}
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
public Node getFrom() {
return from;
}
public void setFrom(Node from) {
this.from = from;
}
public Node getTo() {
return to;
}
public void setTo(Node to) {
this.to = to;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -