Documentation
authorMathieu Baudier <mbaudier@argeo.org>
Wed, 16 Feb 2022 08:49:20 +0000 (09:49 +0100)
committerMathieu Baudier <mbaudier@argeo.org>
Wed, 16 Feb 2022 08:49:20 +0000 (09:49 +0100)
eclipse/org.argeo.cms.swt/src/org/argeo/cms/swt/CmsSwtUtils.java

index a94d70706121eeb881c09fa045f5827cd0215159..701de2827f1f68f064220b6d2decc486c7d1e956 100644 (file)
@@ -102,10 +102,15 @@ public class CmsSwtUtils {
        /*
         * GRID LAYOUT
         */
+       /** A {@link GridLayout} without any spacing and one column. */
        public static GridLayout noSpaceGridLayout() {
                return noSpaceGridLayout(new GridLayout());
        }
 
+       /**
+        * A {@link GridLayout} without any spacing and multiple columns of unequal
+        * width.
+        */
        public static GridLayout noSpaceGridLayout(int columns) {
                return noSpaceGridLayout(new GridLayout(columns, false));
        }