More progress

git-svn-id: http://svn.3splooges.com/romraider-arch/trunk@364 d2e2e1cd-ba16-0410-be16-b7c4453c7c2d
This commit is contained in:
Jared Gould 2006-11-28 23:53:42 +00:00
parent 2bb05d3586
commit 2f38e09038
1 changed files with 3 additions and 21 deletions

View File

@ -17,6 +17,7 @@ import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Stack;
import javax.swing.JFrame;
public class RomDefinitionHandler extends DefaultHandler {
@ -478,25 +479,6 @@ public class RomDefinitionHandler extends DefaultHandler {
}
/*public Rom parseECUDefinition(String ecuid) {
try {
InputStream is = new BufferedInputStream(new FileInputStream(lookupDefinition(ecuid)));
} catch (Exception ex) {
ex.printStackTrace();
}
return new Rom("asdf");
}
private File lookupDefinition(String ecuid) {
// This will look up the definition in the index
// For now it'll just do what I want
// Param WILL be byte[] file
return new File("/ecu_defs/subaru/wrx/16BITBASE.xml");
}*/
public static void main(String[] args) {
try {
InputStream inputStream1 = new BufferedInputStream(new FileInputStream(new File("/ecu_defs/subaru/wrx/16BITBASE.xml")));