use of eu.ggnet.dwoss.customer.ui.old.AdditionalCustomerIdsView in project dwoss by gg-net.
the class AdditionalcustomerIdsViewTryout method main.
public static void main(String[] args) {
UiCore.startSwing(() -> new JLabel("Main"));
Map<ExternalSystem, String> in = new HashMap<>();
in.put(ExternalSystem.SAGE, "123412");
Ui.exec(() -> {
Ui.build().dialog().eval(() -> in, () -> new AdditionalCustomerIdsView()).opt().ifPresent(System.out::println);
});
}
Aggregations