From c2089e5a3e604424c7cd00bbddcb03731ff5a0ea Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Sun, 21 Feb 2016 15:42:14 -0500 Subject: Added new control and some commenting --- BJC-Utils2/src/main/java/bjc/utils/gui/layout/VLayout.java | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/gui/layout/VLayout.java') 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); -- cgit v1.2.3