public interface Window
Modifier and Type | Interface and Description |
---|---|
static class |
Window.FrameWindow |
static class |
Window.InternalFrameWindow
Description of the Class
|
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
IS_SHADED_PROPERTY
Description of the Field
|
static java.lang.String |
SHADE_BOUNDS_PROPERTY |
Modifier and Type | Method and Description |
---|---|
void |
addPropertyChangeListener(java.beans.PropertyChangeListener listener)
Adds a feature to the PropertyChangeListener attribute of the
Window object
|
void |
dispatchEvent(java.awt.AWTEvent event)
Description of the Method
|
java.awt.Container |
getContainer()
Gets the Container attribute of the Window object
|
javax.swing.Icon |
getFrameIcon()
Gets the FrameIcon attribute of the Window object
|
java.lang.String |
getTitle()
Gets the Title attribute of the Window object
|
boolean |
isClosable()
Gets the Closable attribute of the Window object
|
boolean |
isIcon()
Gets the Icon attribute of the Window object
|
boolean |
isIconifiable()
Gets the Iconifiable attribute of the Window object
|
boolean |
isMaximizable()
Gets the Maximizable attribute of the Window object
|
boolean |
isMaximum()
Gets the Maximum attribute of the Window object
|
boolean |
isResizable()
Gets the Resizable attribute of the Window object
|
boolean |
isSelected()
Gets the Selected attribute of the Window object
|
boolean |
isShaded()
Gets the Shaded attribute of the Window object
|
void |
removePropertyChangeListener(java.beans.PropertyChangeListener listener)
Remove a feature to the PropertyChangeListener attribute of the
Window object
|
void |
setClosed(boolean b)
Sets the Closed attribute of the Window object
|
void |
setIcon(boolean b)
Sets the Icon attribute of the Window object
|
void |
setMaximum(boolean b)
Sets the Maximum attribute of the Window object
|
void |
setSelected(boolean b)
Sets the Selected attribute of the Window object
|
void |
setShaded(boolean b)
Sets the Shaded attribute of the Window object
|
static final java.lang.String IS_SHADED_PROPERTY
static final java.lang.String SHADE_BOUNDS_PROPERTY
java.awt.Container getContainer()
void addPropertyChangeListener(java.beans.PropertyChangeListener listener)
listener
- The feature to be added to the
PropertyChangeListener attributevoid removePropertyChangeListener(java.beans.PropertyChangeListener listener)
listener
- The feature to be remove from the
PropertyChangeListener attributeboolean isSelected()
void setSelected(boolean b) throws java.beans.PropertyVetoException
b
- The new Selected valuejava.beans.PropertyVetoException
- Description of Exceptionboolean isIcon()
void setIcon(boolean b) throws java.beans.PropertyVetoException
b
- The new Icon valuejava.beans.PropertyVetoException
- Description of Exceptionboolean isMaximum()
void setMaximum(boolean b) throws java.beans.PropertyVetoException
b
- The new Maximum valuejava.beans.PropertyVetoException
- Description of Exceptionboolean isShaded()
void setShaded(boolean b)
b
- The new Shaded valueboolean isMaximizable()
boolean isIconifiable()
boolean isClosable()
void setClosed(boolean b) throws java.beans.PropertyVetoException
b
- The new Closed valuejava.beans.PropertyVetoException
- Description of Exceptionboolean isResizable()
java.lang.String getTitle()
javax.swing.Icon getFrameIcon()
void dispatchEvent(java.awt.AWTEvent event)
event
- Description of Parameter