2015-07-24 11:32:22 +03:00
|
|
|
package com.iluwatar.execute.around;
|
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 {
|
|
|
|
|
2015-11-01 21:29:13 -05:00
|
|
|
void writeFile(FileWriter writer) throws IOException;
|
|
|
|
|
2015-03-29 21:25:13 +03:00
|
|
|
}
|