aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs169/pr309440/foobar/ExportMode.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs169/pr309440/foobar/ExportMode.java')
-rw-r--r--tests/bugs169/pr309440/foobar/ExportMode.java41
1 files changed, 41 insertions, 0 deletions
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;
+ }
+
+}