Class sunsoft.jws.visual.rt.base.AMContainerHelper
All Packages Class Hierarchy This Package Previous Next Index
Class sunsoft.jws.visual.rt.base.AMContainerHelper
java.lang.Object
|
+----sunsoft.jws.visual.rt.base.AMContainerHelper
- public class AMContainerHelper
- extends Object
This is a helper class for shadow containers. Shadow containers are
nodes in the shadow tree. A shadow container should implement the
AMContainer interface.
-
AMContainerHelper(AMContainer)
- Constructor.
-
add(AttributeManager)
- Adds a child.
-
createChildren()
- Create the container's children.
-
destroyChildren()
- Destroy all the children of the container.
-
getChild(String)
- Finds a child (by name.)
-
getChildCount()
- Returns the number of children in the container.
-
getChildList()
- Returns a list of the children that the caller can use only for reading
and cannot alter.
-
getChildren()
- Returns the list of children this helper is keeping track of for the
container.
-
layoutMode()
-
-
preValidate()
-
-
previewMode()
-
-
remove(AttributeManager)
- Removes a child.
-
reparentChildren()
- Reparent the children of the container.
AMContainerHelper
public AMContainerHelper(AMContainer container)
- Constructor.
getChildren
public Vector getChildren()
- Returns the list of children this helper is keeping track of for the
container.
getChildList
public Enumeration getChildList()
- Returns a list of the children that the caller can use only for reading
and cannot alter. The list is cloned because the caller might use it
for removing children from the container.
getChildCount
public int getChildCount()
- Returns the number of children in the container.
add
public void add(AttributeManager child)
- Adds a child.
remove
public void remove(AttributeManager child)
- Removes a child.
getChild
public AttributeManager getChild(String name)
- Finds a child (by name.)
createChildren
public void createChildren()
- Create the container's children.
destroyChildren
public void destroyChildren()
- Destroy all the children of the container.
reparentChildren
public void reparentChildren()
- Reparent the children of the container. This is called when the
container is being recreated.
layoutMode
public void layoutMode()
previewMode
public void previewMode()
preValidate
public void preValidate()
All Packages Class Hierarchy This Package Previous Next Index