📄 playframe.java
字号:
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;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -