ingenias.idegen.Prueba Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
The INGENIAS Meta-Editor core. It is a set of facilities to generate an editor from a detailed xml description
package ingenias.idegen;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.zip.ZipInputStream;
public class Prueba {
public static void main(String args[]) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(new ZipInputStream(ObjectsGenerator.class.getResourceAsStream("/templates"))));
String fileName;
while((fileName = br.readLine()) != null){
System.err.println(fileName);
}
}
}