public interface MainGuiDef
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDocument()
Get the currently displayed document.
|
void |
logException(java.lang.String logLevel,
java.lang.String methodName,
java.lang.String msg,
java.lang.Exception ex)
Log an exception in the main GUI system.
|
void |
logMessage(java.lang.String message)
Log a message in the main GUI system.
|
void |
registerView(DrawGuiDef drawView,
boolean reg)
Register to draw or unregister to draw the main view.
|
void |
setServiceToFront(java.lang.String guiKey)
Set the gui indicated to the front of the window order and update main window
saved ordering.
|
java.lang.String getDocument()
void registerView(DrawGuiDef drawView, boolean reg)
drawView
- the component that provides the view to draw.reg
- true if register or false if unregister.void setServiceToFront(java.lang.String guiKey)
guiKey
- the key the gui is stored under.void logMessage(java.lang.String message)
message
- the message to log.void logException(java.lang.String logLevel, java.lang.String methodName, java.lang.String msg, java.lang.Exception ex)
logLevel
- the level to log at.methodName
- name of method error created in.msg
- optional additional information.ex
- the exception to log.