diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2016-02-21 15:42:14 -0500 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2016-02-21 15:42:14 -0500 |
| commit | c2089e5a3e604424c7cd00bbddcb03731ff5a0ea (patch) | |
| tree | 31854f794e47b8dc67ea10d6699368810ca78f55 /BJC-Utils2/src/main/java/bjc/utils/gui/SimpleTitledBorder.java | |
| parent | eb30c23bb03579bf839189ab0d2ad172d5b07766 (diff) | |
Added new control and some commenting
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/gui/SimpleTitledBorder.java')
| -rw-r--r-- | BJC-Utils2/src/main/java/bjc/utils/gui/SimpleTitledBorder.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/gui/SimpleTitledBorder.java b/BJC-Utils2/src/main/java/bjc/utils/gui/SimpleTitledBorder.java index aa19566..9c6feef 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/gui/SimpleTitledBorder.java +++ b/BJC-Utils2/src/main/java/bjc/utils/gui/SimpleTitledBorder.java @@ -5,15 +5,21 @@ import javax.swing.border.TitledBorder; /** * A simple border with a title attached to it. + * * @author ben * */ public class SimpleTitledBorder extends TitledBorder { + /** + * Version ID for serialization + */ private static final long serialVersionUID = -5655969079949148487L; /** * Create a new border with the specified title. - * @param title The title for the border. + * + * @param title + * The title for the border. */ public SimpleTitledBorder(String title) { super(new EtchedBorder(), title); |
