All Packages Class Hierarchy This Package Previous Next Index
Class tropo.awt.TRBorderPanel
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.Panel
|
+----tropo.awt.TRPanel
|
+----tropo.awt.TRBorderPanel
- public class TRBorderPanel
- extends TRPanel
We try to be a bomb-proof Panel that forces a BorderLayout.
-
TRBorderPanel()
-
-
TRBorderPanel(Component)
-
-
add(Component)
- Prevent a buggy call inherited from Container.
-
add(Component, int)
- Prevent a buggy call inherited from Container.
-
add(String, Component)
- Don't call this! Call addNorth() or whatever instead.
-
addCenter(Component)
-
-
addEast(Component)
-
-
addNorth(Component)
-
-
addSouth(Component)
-
-
addWest(Component)
-
-
setLayout(LayoutManager)
-
TRBorderPanel
public TRBorderPanel()
TRBorderPanel
public TRBorderPanel(Component center)
add
public Component add(Component c)
- Prevent a buggy call inherited from Container. Don't call this!
- Overrides:
- add in class Container
add
public Component add(Component c,
int pos)
- Prevent a buggy call inherited from Container. Don't call this.
- Overrides:
- add in class Container
add
public Component add(String where,
Component c)
- Don't call this! Call addNorth() or whatever instead. We validate
the 'where' arg though.
- Parameters:
- where - "North"/"South"/...
- Overrides:
- add in class Container
setLayout
public void setLayout(LayoutManager lm)
- Overrides:
- setLayout in class Container
addNorth
public void addNorth(Component c)
addSouth
public void addSouth(Component c)
addEast
public void addEast(Component c)
addWest
public void addWest(Component c)
addCenter
public void addCenter(Component c)
All Packages Class Hierarchy This Package Previous Next Index