1
0
forked from GitHub/gf-core

added a test class for the Java API plus a small refinement in the implementation for the binding

This commit is contained in:
kr.angelov
2013-05-28 13:32:32 +00:00
parent bd859fcf28
commit e969aa69ff
3 changed files with 41 additions and 20 deletions

View File

@@ -0,0 +1,8 @@
import org.grammaticalframework.*;
public class Test {
public static void main(String[] args) {
PGF gr = PGF.readPGF("/home/krasimir/www.grammaticalframework.org/treebanks/PennTreebank/ParseEngAbs.pgf");
gr.close();
}
}