source: xssim/branches/tpiontek/src/simulator/workload/reader/resource/ResourceReader.java @ 104

Revision 104, 304 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package simulator.workload.reader.resource;
2
3/**
4 *
5 * @author Marcin Krystek
6 *
7 */
8public interface ResourceReader <Resource, Calendar> {
9
10        public void close();
11       
12        public void setCalendar(Calendar calendar);
13       
14        public Resource read() throws Exception;
15       
16        public void loadPlugins(String fileName);
17       
18}
Note: See TracBrowser for help on using the repository browser.