View Javadoc

1   // %1126721451229:hoplugins.trainingExperience.ui.component%
2   package hoplugins.trainingExperience.ui.component;
3   
4   import javax.swing.JComboBox;
5   
6   
7   /***
8    * ComboBox for editing the Training intensity
9    *
10   * @author <a href=mailto:draghetto@users.sourceforge.net>Massimiliano Amato</a>
11   */
12  public class IntensityComboBox extends JComboBox {
13      //~ Constructors -------------------------------------------------------------------------------
14  
15      /***
16       * Creates a new IntensityComboBox object.
17       */
18      public IntensityComboBox() {
19          super();
20  
21          for (int i = 0; i <= 100; i++) {
22              addItem(new Integer(i));
23          }
24      }
25  }