aboutsummaryrefslogtreecommitdiff
path: root/src/BaseComboBox.java
diff options
context:
space:
mode:
authorJoshua Rahm <joshua.rahm@colorado.edu>2015-01-30 17:11:48 -0700
committerJoshua Rahm <joshua.rahm@colorado.edu>2015-01-30 17:11:48 -0700
commit1c5e38fe69ac8a6decbdd8abe93112f4e3369315 (patch)
tree926cef8cb76d46862ed2c4ec7028720611e47476 /src/BaseComboBox.java
downloadModulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.tar.gz
Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.tar.bz2
Modulus3D-1c5e38fe69ac8a6decbdd8abe93112f4e3369315.zip
added source
Diffstat (limited to 'src/BaseComboBox.java')
-rw-r--r--src/BaseComboBox.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/BaseComboBox.java b/src/BaseComboBox.java
new file mode 100644
index 0000000..cc8797c
--- /dev/null
+++ b/src/BaseComboBox.java
@@ -0,0 +1,15 @@
+/* */ import javax.swing.JComboBox;
+/* */
+/* */ public class BaseComboBox extends JComboBox
+/* */ {
+/* */ public BaseComboBox(int index)
+/* */ {
+/* 14 */ super(new String[] { "Unary (1)", "Binary (2)", "Ternary (3)", "Quaternal (4)", "Quintal (5)", "Sextal (6)", "Septernal (7)", "Ocatal (8)", "Nonary (9)", "Decimal (default)", "Unidecimal (11)", "Dozenal (12)", "Tredecimal (13)", "Tetradecimal (14)", "Quindecimal (15)", "Hexadecimal (16)", "Septendecimal (17)", "Octodecimal (18)", "Nonadecimal (19)", "Vigesimal (20)", "Base 21", "Base 22", "Base 23", "Base 24", "Base 25", "Base 26", "Base 27", "Base 28", "Base 29", "Base 30", "Base 31", "Base 32", "Base 33", "Base 34", "Base 35", "Base 36" });
+/* 15 */ setSelectedIndex(index);
+/* */ }
+/* */ }
+
+/* Location: Modulus.jar
+ * Qualified Name: BaseComboBox
+ * JD-Core Version: 0.6.2
+ */ \ No newline at end of file