tools.dynamia.ui.DialogComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools.dynamia.ui Show documentation
Show all versions of tools.dynamia.ui Show documentation
Helper classes for module integrations and messages
The newest version!
package tools.dynamia.ui;
public interface DialogComponent extends UIComponent{
void setTitle(String title);
String getTitle();
void setWidth(String width);
String getWidth();
void setHeight(String height);
String getHeight();
void setContent(Object content);
Object getContent();
void setData(Object data);
Object getData();
void onClose(EventCallback callback);
void setDraggable(boolean draggable);
boolean isDraggable();
void setClosable(boolean closable);
boolean isClosable();
void show();
void close();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy