GridLab
Grid Application Toolkit

A simple API for Grid Applications
GAT

Menu



Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members  

SoftwareResourceCpi.java

Go to the documentation of this file.
00001 /*
00002  * Created on Apr 22, 2004
00003  */
00004 package org.gridlab.gat.resources.cpi;
00005 
00006 import org.gridlab.gat.GATContext;
00007 import org.gridlab.gat.Preferences;
00008 import org.gridlab.gat.resources.SoftwareResource;
00009 
00010 
00011 /**
00012  * @author rob
00013  */
00014 public abstract class SoftwareResourceCpi extends SoftwareResource {
00015     public SoftwareResourceCpi(GATContext gatContext, Preferences preferences) {
00016         super(gatContext, preferences);
00017     }
00018 }