org.javabuilders.layout.mig.MigLayoutCommon Maven / Gradle / Ivy
The newest version!
package org.javabuilders.layout.mig;
/**
* Common constants and methods for integrating the MigLayout (since it is used by both the SWT and Swing
* builders and hence cross-domain)
* @author Jacek Furmankiewicz
*
*/
public class MigLayoutCommon {
public final static String LAYOUT_CONSTRAINTS = "layoutConstraints";
public final static String ROW_CONSTRAINTS = "rowConstraints";
public final static String COLUMN_CONSTRAINTS = "columnConstraints";
public final static String DEFAULT_ROW_COLUMN_CONSTRAINT = "[] ";
}