playframe.java
来自「这是一个演示分布式系统并行计算的GUI程序」· Java 代码 · 共 56 行
JAVA
56 行
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 + =
减小字号Ctrl + -
显示快捷键?