public interface FwkWindowInterface extends FwkControllerInterface
AUTHOR, BUILDNR, COMPANY, COPYRIGHT, DATE_FORMAT, DEFAULT_ICON, DESCRIPTION, INTERNET, LARGE_ICON, LARGE_KEY_EXT, LARGE_OPAQUE_ICON, LARGE_OPAQUE_KEY_EXT, OPAQUE_ICON, OPAQUE_KEY_EXT, RCS_DATE_FORMAT, SUPPORT_EMAIL, TITLE_NAME
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getApplicationClassName()
Retrieves the class name of the application.
|
java.lang.String |
getApplicationName()
Set the class name of the application.
|
java.lang.String[] |
getArguments()
Get the arguments.
|
java.net.URL |
getCodeBase()
Gets the base URL.
|
int |
getHeight()
Get the height of the window.
|
int |
getWidth()
Get the width of the window.
|
int |
getX()
Get the X position of the window (upper left corner).
|
int |
getY()
Get the Y position of the window (upper left corner).
|
void |
init()
Initialize the window.
|
void |
setApplicationClassName(java.lang.String className)
Set the class name of the application.
|
void |
setArguments(java.lang.String[] args) |
void |
setHeight(int height)
Set the height of the window.
|
void |
setVisible(boolean flag)
Set the window visible.
|
void |
setWidth(int width)
Set the width of the window.
|
void |
setX(int x)
Set the X position of the window (upper left corner).
|
void |
setY(int y)
Set the Y position of the window (upper left corner).
|
void |
start()
Called by the main program to inform the
hosted application that it should start
its execution.
|
void |
stop()
Called by the main program to inform the
hosted application that it should stop
its execution.
|
destroyController
getAuthor, getBuild, getClassName, getCompany, getCompanyInternetAddress, getCopyright, getCreationDate, getCreationDate, getDateFormatString, getDescription, getIcon, getIcon, getIconKey, getIconKey, getName, getPresentationString, getPresentationString, getSupportEMail, getTitle, getTitleName, setAuthor, setBuild, setClassName, setCompany, setCompanyInternetAddress, setCopyright, setCreationDate, setCreationDate, setDateFormatString, setDescription, setDescriptor, setIcon, setIcon, setIconKey, setIconKey, setName, setSupportEMail, setTitleName
getVersion, release
java.lang.String getApplicationClassName()
java.lang.String getApplicationName()
className
- The name of the application class.java.lang.String[] getArguments()
java.net.URL getCodeBase()
int getHeight()
int getWidth()
int getX()
int getY()
void init()
void setApplicationClassName(java.lang.String className)
className
- The name of the application class.void setArguments(java.lang.String[] args)
void setHeight(int height)
height
- The height of the window.void setWidth(int width)
width
- The width of the window.void setX(int x)
x
- The X position of the upper left corner of the window.void setY(int y)
y
- The Y position of the upper left corner of the window.void start()
void stop()
void setVisible(boolean flag)
flag
- if true the window becomes visible.