diff options
author | mattinger <[email protected]> | 2006-07-06 21:53:00 +0000 |
---|---|---|
committer | mattinger <[email protected]> | 2006-07-06 21:53:00 +0000 |
commit | 1159111b7a71b72eb04326df33211e1733f7e742 (patch) | |
tree | f0a80c384f633e521649654ab78e6239cf5e0d6f /test/resources/walls/testA |
Initial addition into subversion with build script changes
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/trunk/ant-contrib@5 32d7a393-a5a9-423c-abd3-5d954feb1f2f
Diffstat (limited to 'test/resources/walls/testA')
-rw-r--r-- | test/resources/walls/testA/mod/modA/ModuleA.java | 10 | ||||
-rw-r--r-- | test/resources/walls/testA/mod/modB/ModuleB.java | 6 |
2 files changed, 16 insertions, 0 deletions
diff --git a/test/resources/walls/testA/mod/modA/ModuleA.java b/test/resources/walls/testA/mod/modA/ModuleA.java new file mode 100644 index 0000000..6950bdc --- /dev/null +++ b/test/resources/walls/testA/mod/modA/ModuleA.java @@ -0,0 +1,10 @@ + +package mod.modA; + +import mod.modB.ModuleB; + +public class ModuleA +{ + private ModuleB moduleB; + +};
\ No newline at end of file diff --git a/test/resources/walls/testA/mod/modB/ModuleB.java b/test/resources/walls/testA/mod/modB/ModuleB.java new file mode 100644 index 0000000..10175b5 --- /dev/null +++ b/test/resources/walls/testA/mod/modB/ModuleB.java @@ -0,0 +1,6 @@ + +package mod.modB; + +public class ModuleB +{ +};
\ No newline at end of file |