Package com.l2fprod.gui.plaf.skin
Interface Window
-
- All Known Implementing Classes:
Window.FrameWindow,Window.InternalFrameWindow
public interface WindowCreated on 27/05/2000 by Frederic Lavigne, fred@L2FProd.com- Version:
- $Revision: 1.11 $, $Date: 2005/11/19 09:25:28 $
- Author:
- $Author: l2fprod $ @created 27 avril 2002
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classWindow.FrameWindowstatic classWindow.InternalFrameWindowDescription of the Class
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringIS_SHADED_PROPERTYDescription of the Fieldstatic java.lang.StringSHADE_BOUNDS_PROPERTY
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddPropertyChangeListener(java.beans.PropertyChangeListener listener)Adds a feature to the PropertyChangeListener attribute of the Window objectvoiddispatchEvent(java.awt.AWTEvent event)Description of the Methodjava.awt.ContainergetContainer()Gets the Container attribute of the Window objectjavax.swing.IcongetFrameIcon()Gets the FrameIcon attribute of the Window objectjava.lang.StringgetTitle()Gets the Title attribute of the Window objectbooleanisClosable()Gets the Closable attribute of the Window objectbooleanisIcon()Gets the Icon attribute of the Window objectbooleanisIconifiable()Gets the Iconifiable attribute of the Window objectbooleanisMaximizable()Gets the Maximizable attribute of the Window objectbooleanisMaximum()Gets the Maximum attribute of the Window objectbooleanisResizable()Gets the Resizable attribute of the Window objectbooleanisSelected()Gets the Selected attribute of the Window objectbooleanisShaded()Gets the Shaded attribute of the Window objectvoidremovePropertyChangeListener(java.beans.PropertyChangeListener listener)Remove a feature to the PropertyChangeListener attribute of the Window objectvoidsetClosed(boolean b)Sets the Closed attribute of the Window objectvoidsetIcon(boolean b)Sets the Icon attribute of the Window objectvoidsetMaximum(boolean b)Sets the Maximum attribute of the Window objectvoidsetSelected(boolean b)Sets the Selected attribute of the Window objectvoidsetShaded(boolean b)Sets the Shaded attribute of the Window object
-
-
-
Field Detail
-
IS_SHADED_PROPERTY
static final java.lang.String IS_SHADED_PROPERTY
Description of the Field- See Also:
- Constant Field Values
-
SHADE_BOUNDS_PROPERTY
static final java.lang.String SHADE_BOUNDS_PROPERTY
- See Also:
- Constant Field Values
-
-
Method Detail
-
getContainer
java.awt.Container getContainer()
Gets the Container attribute of the Window object- Returns:
- The Container value
-
addPropertyChangeListener
void addPropertyChangeListener(java.beans.PropertyChangeListener listener)
Adds a feature to the PropertyChangeListener attribute of the Window object- Parameters:
listener- The feature to be added to the PropertyChangeListener attribute
-
removePropertyChangeListener
void removePropertyChangeListener(java.beans.PropertyChangeListener listener)
Remove a feature to the PropertyChangeListener attribute of the Window object- Parameters:
listener- The feature to be remove from the PropertyChangeListener attribute
-
isSelected
boolean isSelected()
Gets the Selected attribute of the Window object- Returns:
- The Selected value
-
setSelected
void setSelected(boolean b) throws java.beans.PropertyVetoExceptionSets the Selected attribute of the Window object- Parameters:
b- The new Selected value- Throws:
java.beans.PropertyVetoException- Description of Exception
-
isIcon
boolean isIcon()
Gets the Icon attribute of the Window object- Returns:
- The Icon value
-
setIcon
void setIcon(boolean b) throws java.beans.PropertyVetoExceptionSets the Icon attribute of the Window object- Parameters:
b- The new Icon value- Throws:
java.beans.PropertyVetoException- Description of Exception
-
isMaximum
boolean isMaximum()
Gets the Maximum attribute of the Window object- Returns:
- The Maximum value
-
setMaximum
void setMaximum(boolean b) throws java.beans.PropertyVetoExceptionSets the Maximum attribute of the Window object- Parameters:
b- The new Maximum value- Throws:
java.beans.PropertyVetoException- Description of Exception
-
isShaded
boolean isShaded()
Gets the Shaded attribute of the Window object- Returns:
- The Shaded value
-
setShaded
void setShaded(boolean b)
Sets the Shaded attribute of the Window object- Parameters:
b- The new Shaded value
-
isMaximizable
boolean isMaximizable()
Gets the Maximizable attribute of the Window object- Returns:
- The Maximizable value
-
isIconifiable
boolean isIconifiable()
Gets the Iconifiable attribute of the Window object- Returns:
- The Iconifiable value
-
isClosable
boolean isClosable()
Gets the Closable attribute of the Window object- Returns:
- The Closable value
-
setClosed
void setClosed(boolean b) throws java.beans.PropertyVetoExceptionSets the Closed attribute of the Window object- Parameters:
b- The new Closed value- Throws:
java.beans.PropertyVetoException- Description of Exception
-
isResizable
boolean isResizable()
Gets the Resizable attribute of the Window object- Returns:
- The Resizable value
-
getTitle
java.lang.String getTitle()
Gets the Title attribute of the Window object- Returns:
- The Title value
-
getFrameIcon
javax.swing.Icon getFrameIcon()
Gets the FrameIcon attribute of the Window object- Returns:
- The FrameIcon value
-
dispatchEvent
void dispatchEvent(java.awt.AWTEvent event)
Description of the Method- Parameters:
event- Description of Parameter
-
-