view src/main/java/alice/jungle/persistent/NetworkJournal.java @ 135:2e8034524259

Added NetworkJournal and SingletonMessageFromAlice class
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Sun, 12 Jan 2014 06:18:37 +0900
parents
children
line wrap: on
line source

package alice.jungle.persistent;

import java.io.File;
import java.io.FileNotFoundException;

import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.persistent.Journal;

public interface NetworkJournal extends Journal{

	public void setInputFile(File file) throws FileNotFoundException;
	public void setOutputFile(File file) throws FileNotFoundException;
	
	
}