#108 Consistent package naming throughout the examples
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
package com.iluwatar.execute.around;
|
||||
|
||||
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;
|
||||
|
||||
}
|
Reference in New Issue
Block a user