diff options
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/gui/panels/SimpleSpinnerPanel.java')
| -rw-r--r-- | BJC-Utils2/src/main/java/bjc/utils/gui/panels/SimpleSpinnerPanel.java | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/gui/panels/SimpleSpinnerPanel.java b/BJC-Utils2/src/main/java/bjc/utils/gui/panels/SimpleSpinnerPanel.java index 5996b65..e9e94d5 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/gui/panels/SimpleSpinnerPanel.java +++ b/BJC-Utils2/src/main/java/bjc/utils/gui/panels/SimpleSpinnerPanel.java @@ -9,21 +9,25 @@ import javax.swing.SpinnerModel; /** * A simple spinner control + * * @author ben * */ public class SimpleSpinnerPanel extends JPanel { - private static final long serialVersionUID = -4734279623645236868L; + private static final long serialVersionUID = -4734279623645236868L; /* * The spinner being used */ - public final JSpinner inputValue; + public final JSpinner inputValue; /** * Create a new spinner panel - * @param label The label for the spinner - * @param model The model to attach to the spinner + * + * @param label + * The label for the spinner + * @param model + * The model to attach to the spinner */ public SimpleSpinnerPanel(String label, SpinnerModel model) { setLayout(new BorderLayout()); |
