2015-05-31 11:55:18 +03:00
|
|
|
package com.iluwatar.executearound;
|
2015-03-29 21:25:13 +03:00
|
|
|
|
|
|
|
import java.io.FileWriter;
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Interface for specifying what to do with the file resource.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public interface FileWriterAction {
|
|
|
|
|
|
|
|
void writeFile(FileWriter writer) throws IOException;
|
|
|
|
|
|
|
|
}
|