org.bidib.wizard.mvc.common.DialogRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-client Show documentation
Show all versions of bidibwizard-client Show documentation
jBiDiB BiDiB Wizard Client Application POM
package org.bidib.wizard.mvc.common;
import java.util.ArrayList;
import java.util.List;
import org.bidib.wizard.mvc.common.view.RegisteredDialog;
public class DialogRegistry {
private final List dialogRegistry = new ArrayList<>();
public List getDialogRegistry() {
return dialogRegistry;
}
@Override
public String toString() {
return "DialogRegistry[dialogRegistry=" + dialogRegistry + "]";
}
}