1 package com.loribel.commons.abstraction; 2 3 import java.io.*; 4 5 public interface GB_FileTxt 6 { 7 File getFile(); 8 9 String getContent() 10 throws IOException; 11 }