/matlabcontrol/src/demo/gui/ArrayPanel.java

http://matlabcontrol.googlecode.com/ · Java · 159 lines · 91 code · 16 blank · 52 comment · 13 complexity · f3dd5456a2a93c511ad580bf30f806d2 MD5 · raw file

  1. package demo.gui;
  2. /*
  3. * Copyright (c) 2011, Joshua Kaplan
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
  7. * following conditions are met:
  8. * - Redistributions of source code must retain the above copyright notice, this list of conditions and the following
  9. * disclaimer.
  10. * - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
  11. * following disclaimer in the documentation and/or other materials provided with the distribution.
  12. * - Neither the name of matlabcontrol nor the names of its contributors may be used to endorse or promote products
  13. * derived from this software without specific prior written permission.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  16. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  17. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  18. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  19. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  20. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  21. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  22. */
  23. import java.awt.Color;
  24. import java.awt.GridLayout;
  25. import java.util.ArrayList;
  26. import javax.swing.JComboBox;
  27. import javax.swing.JPanel;
  28. import javax.swing.JTextField;
  29. /**
  30. * The panel that contains the options to select elements of the array.
  31. *
  32. * @author <a href="mailto:nonother@gmail.com">Joshua Kaplan</a>
  33. */
  34. @SuppressWarnings("serial")
  35. class ArrayPanel extends JPanel
  36. {
  37. //Input options: String or Double
  38. private static final int DOUBLE_INDEX = 0, STRING_INDEX = 1;
  39. private static final String[] OPTIONS = new String[2];
  40. static
  41. {
  42. OPTIONS[DOUBLE_INDEX] = "Double";
  43. OPTIONS[STRING_INDEX] = "String";
  44. }
  45. /**
  46. * Number of fields and drop down lists.
  47. */
  48. public static final int NUM_ENTRIES = 3;
  49. /**
  50. * Drop down lists to choose between object types.
  51. */
  52. private final JComboBox[] _optionBoxes;
  53. /**
  54. * Fields for inputting values.
  55. */
  56. private final JTextField[] _entryFields;
  57. public ArrayPanel()
  58. {
  59. super(new GridLayout(NUM_ENTRIES,2));
  60. this.setBackground(Color.WHITE);
  61. //Drop down lists and input fields
  62. _optionBoxes = new JComboBox[NUM_ENTRIES];
  63. _entryFields = new JTextField[NUM_ENTRIES];
  64. for(int i = 0; i < NUM_ENTRIES; i++)
  65. {
  66. _optionBoxes[i] = new JComboBox(OPTIONS);
  67. _entryFields[i] = new JTextField(8);
  68. this.add(_optionBoxes[i]);
  69. this.add(_entryFields[i]);
  70. }
  71. }
  72. /**
  73. * Take the elements of the fields and put them into an array.
  74. *
  75. * @return
  76. */
  77. public Object[] getArray()
  78. {
  79. ArrayList<Object> entries = new ArrayList<Object>();
  80. for(int i = 0; i < NUM_ENTRIES; i++)
  81. {
  82. if(!_entryFields[i].getText().isEmpty())
  83. {
  84. if(_optionBoxes[i].getSelectedIndex() == DOUBLE_INDEX)
  85. {
  86. try
  87. {
  88. entries.add(Double.parseDouble(_entryFields[i].getText()));
  89. }
  90. catch(Exception e)
  91. {
  92. entries.add(0);
  93. }
  94. }
  95. if(_optionBoxes[i].getSelectedIndex() == STRING_INDEX)
  96. {
  97. entries.add(_entryFields[i].getText());
  98. }
  99. }
  100. }
  101. return entries.toArray();
  102. }
  103. /**
  104. * Return the first entry of the fields.
  105. *
  106. * @return
  107. */
  108. public Object getFirstEntry()
  109. {
  110. if(!_entryFields[0].getText().isEmpty())
  111. {
  112. if(_optionBoxes[0].getSelectedIndex() == DOUBLE_INDEX)
  113. {
  114. try
  115. {
  116. return Double.parseDouble(_entryFields[0].getText());
  117. }
  118. catch(Exception e)
  119. {
  120. return 0;
  121. }
  122. }
  123. if(_optionBoxes[0].getSelectedIndex() == STRING_INDEX)
  124. {
  125. return _entryFields[0].getText();
  126. }
  127. }
  128. return null;
  129. }
  130. /**
  131. * Enable the first {@code n} fields for input. The others are disabled.
  132. *
  133. * @param n
  134. */
  135. public void enableInputFields(int n)
  136. {
  137. for(int i = 0; i < NUM_ENTRIES; i++)
  138. {
  139. _optionBoxes[i].setEnabled(i < n);
  140. _entryFields[i].setEnabled(i < n);
  141. }
  142. }
  143. }