diff options
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/gui/layout/VLayout.java')
| -rw-r--r-- | BJC-Utils2/src/main/java/bjc/utils/gui/layout/VLayout.java | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/gui/layout/VLayout.java b/BJC-Utils2/src/main/java/bjc/utils/gui/layout/VLayout.java index 953e522..23ab61e 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/gui/layout/VLayout.java +++ b/BJC-Utils2/src/main/java/bjc/utils/gui/layout/VLayout.java @@ -3,16 +3,23 @@ package bjc.utils.gui.layout; import java.awt.GridLayout; /** - * A layout that lays out its components vertically, evenly sharing space among them. + * A layout that lays out its components vertically, evenly sharing space + * among them. + * * @author ben * */ public class VLayout extends GridLayout { + /** + * Version id for serialization + */ private static final long serialVersionUID = -6417962941602322663L; /** * Create a new vertical layout with the specified number of rows. - * @param rows The number of rows. + * + * @param rows + * The number of rows. */ public VLayout(int rows) { super(rows, 1); |
