net.miginfocom.examples.TestMigLayout Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of miglayout Show documentation
Show all versions of miglayout Show documentation
MiGLayout - Java Layout Manager for Swing and SWT
The newest version!
package net.miginfocom.examples;
import net.miginfocom.layout.AC;
public class TestMigLayout
{
public static void main(String[] args) {
AC acWorkingSolution1 = new AC().size(" ").gap().size(" ");
AC acWorkingSolution2 = new AC().size(":").gap().size(":");
AC acNPE = new AC().size("").gap().size("");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy