ENH: major changes to support addition of languages from cmake modules directory.

This commit is contained in:
Bill Hoffman
2004-09-22 14:42:05 -04:00
parent 5971857544
commit 692ba48c4e
55 changed files with 975 additions and 605 deletions

11
Tests/Java/A.java Normal file
View File

@@ -0,0 +1,11 @@
class A
{
public A()
{
}
public void printName()
{
System.out.println("A");
}
}