source: xssim/src/simulator/workload/reader/xmlJob/WLFileAccess.java @ 104

Revision 104, 427 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package simulator.workload.reader.xmlJob;
2
3import java.io.IOException;
4
5/**
6 *
7 * @author Marcin Krystek
8 *
9 */
10public interface WLFileAccess {
11       
12        /**
13         *
14         * @return Name of the file from which value returned
15         * by read() method come from.
16         */
17        public String getFileName();
18       
19        /**
20         *
21         * @return content of the next file
22         * @throws IOException
23         */
24        public String read() throws IOException;
25       
26        public void close();
27}
Note: See TracBrowser for help on using the repository browser.