source: trunk/org/expeditee/io/FrameWriter.java@ 4

Last change on this file since 4 was 4, checked in by davidb, 16 years ago

Starting source code to Expeditee

File size: 321 bytes
Line 
1package org.expeditee.io;
2
3import java.io.IOException;
4
5import org.expeditee.gui.Frame;
6
7public interface FrameWriter {
8
9 public void setOutputLocation(String filename);
10
11 public String writeFrame(Frame toWrite) throws IOException;
12
13 public void stop();
14
15 public boolean isRunning();
16
17 public String getFileContents();
18}
Note: See TracBrowser for help on using the repository browser.