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

📄 gridletsubmission.java

📁 中間件開發详细说明:清华大学J2EE教程讲义(ppt)-Tsinghua University J2EE tutorial lectures (ppt) [上载源码成为会员下载此源码] [成为VIP会
💻 JAVA
字号:
/* * Title:        GridSim Toolkit * Description:  GridSim (Grid Simulation) Toolkit for Modeling and Simulation *               of Parallel and Distributed Systems such as Clusters and Grids *               An example of how to use the failure functionality. * Licence:      GPL - http://www.gnu.org/copyleft/gpl.html * * Author: Agustin Caminero and Anthony Sulistio * Organization: UCLM (Spain) * Created on: August 2007 */import gridsim.Gridlet;/** * This class is just a wrapper to denote * whether this gridlet has been already submitted or not * @author       Agustin Caminero and Anthony Sulistio * @since        GridSim Toolkit 4.1 */public class GridletSubmission{    private Gridlet gl;    private boolean submitted;    public GridletSubmission(Gridlet gl,boolean submitted)    {        this.gl = gl;        this.submitted = submitted;    }    public Gridlet getGridlet()    {        return gl;    }    public boolean getSubmitted()    {        return submitted;    }    public void setGridlet(Gridlet g)    {        this.gl = g;    }    public void setSubmitted(boolean submitted)    {        this.submitted = submitted;    }} // end class

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -