diff options
author | aclement <aclement> | 2010-04-16 16:20:40 +0000 |
---|---|---|
committer | aclement <aclement> | 2010-04-16 16:20:40 +0000 |
commit | e15ff536953b9936d700050805498d9ff0cbaceb (patch) | |
tree | 5cc00fcd7885eaee01280923032f53493a19b41e /tests/bugs169/pr309440 | |
parent | b21eb05a252a83b5a920430d733bed1b4dc97d52 (diff) | |
download | aspectj-e15ff536953b9936d700050805498d9ff0cbaceb.tar.gz aspectj-e15ff536953b9936d700050805498d9ff0cbaceb.zip |
309440 testcodeV1_6_9M1
Diffstat (limited to 'tests/bugs169/pr309440')
-rw-r--r-- | tests/bugs169/pr309440/foobar/CrashAspectJCompiler.java | 10 | ||||
-rw-r--r-- | tests/bugs169/pr309440/foobar/ExportMode.java | 41 | ||||
-rw-r--r-- | tests/bugs169/pr309440/jsr305.jar | bin | 0 -> 31866 bytes |
3 files changed, 51 insertions, 0 deletions
diff --git a/tests/bugs169/pr309440/foobar/CrashAspectJCompiler.java b/tests/bugs169/pr309440/foobar/CrashAspectJCompiler.java new file mode 100644 index 000000000..6baca78f4 --- /dev/null +++ b/tests/bugs169/pr309440/foobar/CrashAspectJCompiler.java @@ -0,0 +1,10 @@ +package foobar; + + +public class CrashAspectJCompiler +{ + public void export(ExportMode aMode) + { + + } +} diff --git a/tests/bugs169/pr309440/foobar/ExportMode.java b/tests/bugs169/pr309440/foobar/ExportMode.java new file mode 100644 index 000000000..6611c8504 --- /dev/null +++ b/tests/bugs169/pr309440/foobar/ExportMode.java @@ -0,0 +1,41 @@ +package foobar; + +import javax.annotation.Nonnull; + +public enum ExportMode +{ + /** + * export configuration and project data + */ + COMPLETE("Complete"), + + /** + * exports configuration only + */ + CONFIGURATION_ONLY("Configuration only"); + + /** + * The display-name + */ + private final String mDisplayName; + + /** + * Stores the displayName + * @param aDisplayName + */ + ExportMode(@Nonnull String aDisplayName) + { + mDisplayName = aDisplayName; + } + + /** + * + * @return the display name + */ + public @Nonnull + String getDisplayName() + { + return mDisplayName; + } + +} diff --git a/tests/bugs169/pr309440/jsr305.jar b/tests/bugs169/pr309440/jsr305.jar Binary files differnew file mode 100644 index 000000000..43807b02f --- /dev/null +++ b/tests/bugs169/pr309440/jsr305.jar |