|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A common interface for UI components being hosted by this MDIManager. Concrete implementation may rely on a JFrame or a JInternalFrame. The need for this interface stems from the fact that the only superclass common to JFrame and JInternalFrame is java.awt.Container, which doesn't contain some very important methods for our purpose, e.g. dispose() or setDefaultCloseOperation(). Yet these method are implemented in both JFrame and JInternalFrame... (maybe this should be a useful interface added to javax.swing ???)
Method Summary | |
void |
dispose()
makes this container unselected, unvisible or closed |
Rectangle |
getBounds()
gets the bounds of the component wrapped by this DockablePanel |
JPanel |
getInnerPane()
Returns the JPanel wrapped into this MDIComponent. |
Dimension |
getSize()
|
boolean |
isVisible()
returns whether the panel is currently visible or not |
void |
pack()
|
void |
reshape(int x,
int y,
int w,
int h)
|
void |
setDefaultCloseOperation(int i)
control the window-closing operation |
void |
setLocation(int x,
int y)
|
void |
setTitle(String title)
set the title of this container |
void |
setVisible(boolean v)
set the visible state of the component |
Method Detail |
public void setVisible(boolean v)
public boolean isVisible()
public Rectangle getBounds()
public void dispose()
public void setTitle(String title)
public void setDefaultCloseOperation(int i)
i
- see javax.swing.WindowConstantspublic void pack()
public void setLocation(int x, int y)
public Dimension getSize()
public void reshape(int x, int y, int w, int h)
public JPanel getInnerPane()
|
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |