⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 playframe.java

📁 这是一个演示分布式系统并行计算的GUI程序
💻 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 + -