16 lines
253 B
Java
16 lines
253 B
Java
|
package com.iluwatar;
|
||
|
|
||
|
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;
|
||
|
|
||
|
}
|