io.github.warnotte.obj2gui2.Tests.MigLayout.maintestmig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obj2gui2 Show documentation
Show all versions of obj2gui2 Show documentation
This library aimed to generated swing interface base on introspection and annotation of DTOs
/**
*
*/
package io.github.warnotte.obj2gui2.Tests.MigLayout;
import java.util.ArrayList;
import java.util.List;
import io.github.warnotte.obj2gui2.Tests.mainEmbbeder.mainTesteur;
/**
* @author Warnotte Renaud
*
*/
public class maintestmig
{
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception
{
final List selection = new ArrayList<>();
selection.add(new DTOMig());
mainTesteur.CreateExemple(selection);
final List selection2 = new ArrayList<>();
selection2.add(new DTOMig2());
mainTesteur.CreateExemple(selection2);
final List selection3 = new ArrayList<>();
selection3.add(new DTOMig3());
mainTesteur.CreateExemple(selection3);
final List selection4 = new ArrayList<>();
selection4.add(new DTOMig4());
mainTesteur.CreateExemple(selection4);
}
}