| net.mygwt.ui.client.widget.Component net.mygwt.ui.client.widget.Container
All known Subclasses: net.mygwt.ui.client.widget.ButtonBar, net.mygwt.ui.client.widget.ExpandBar, net.mygwt.ui.client.widget.menu.Menu, net.mygwt.ui.client.widget.ToolBar, net.mygwt.ui.client.widget.ScrollContainer, net.mygwt.ui.client.widget.TabFolder,
Container | abstract public class Container extends Component (Code) | | A Component that contains child widgets.
CSS:
.my-container (the container itself)
|
Field Summary | |
protected boolean | attachChildren attachChildren specifies if the container's children should be attached and
detached. | protected List | items The container's children. |
Constructor Summary | |
public | Container() Creates a new container. |
Method Summary | |
final protected void | adopt(Widget child) | public void | dispose() | protected void | doAttachChildren() | protected void | doDetachChildren() | public Widget | findWidget(Element elem) Returns the widget whose element or child element matches the given
element. | public boolean | getAutoDispose() Returns the auto dispose state. | public Widget | getWidget(int index) Returns the widget at the specified index. | public int | getWidgetCount() Returns the number of child widgets. | public Iterator | iterator() Returns an iterator over the container's children. | final protected void | orphan(Widget child) | public boolean | remove(Widget widget) Removes a widget from the container. | public void | setAutoDispose(boolean autoDispose) Sets the auto dispose state. |
attachChildren | protected boolean attachChildren(Code) | | attachChildren specifies if the container's children should be attached and
detached. Default value is true .
|
items | protected List items(Code) | | The container's children.
|
Container | public Container()(Code) | | Creates a new container.
|
adopt | final protected void adopt(Widget child)(Code) | | |
dispose | public void dispose()(Code) | | |
doAttachChildren | protected void doAttachChildren()(Code) | | |
doDetachChildren | protected void doDetachChildren()(Code) | | |
findWidget | public Widget findWidget(Element elem)(Code) | | Returns the widget whose element or child element matches the given
element.
Parameters: elem - the element the matching widget or null if no match |
getAutoDispose | public boolean getAutoDispose()(Code) | | Returns the auto dispose state. When true , child widgets
will be disposed when removed from the container. Default value is
false .
the auto dispose state |
getWidget | public Widget getWidget(int index)(Code) | | Returns the widget at the specified index.
Parameters: index - the index the widget |
getWidgetCount | public int getWidgetCount()(Code) | | Returns the number of child widgets.
the widget count |
iterator | public Iterator iterator()(Code) | | Returns an iterator over the container's children.
an iterator |
orphan | final protected void orphan(Widget child)(Code) | | |
remove | public boolean remove(Widget widget)(Code) | | Removes a widget from the container.
Parameters: widget - the widget to remove true if the widget was removed |
setAutoDispose | public void setAutoDispose(boolean autoDispose)(Code) | | Sets the auto dispose state. When true , the container will
automatically dispose any child widget that is removed from it. Default
value is false
Parameters: autoDispose - the auto dispose state |
Methods inherited from net.mygwt.ui.client.widget.Component | public void addListener(int eventType, Listener listener)(Code)(Java Doc) public void addStyleName(String style)(Code)(Java Doc) public void addWidgetListener(WidgetListener listener)(Code)(Java Doc) protected void afterRender()(Code)(Java Doc) protected Component blur()(Code)(Java Doc) public void disable()(Code)(Java Doc) protected void disableContextMenu(boolean disable)(Code)(Java Doc) public void disableTextSelection(boolean disable)(Code)(Java Doc) public void dispose()(Code)(Java Doc) public void enable()(Code)(Java Doc) public void enableEvents(boolean enable)(Code)(Java Doc) public boolean fireEvent(int type)(Code)(Java Doc) public boolean fireEvent(int type, BaseEvent be)(Code)(Java Doc) public boolean fireEvent(int eventType, Widget widget, Widget item)(Code)(Java Doc) public boolean fireEvent(int eventType, Widget widget, Widget item, int index)(Code)(Java Doc) public Component focus()(Code)(Java Doc) public Rectangle getBounds()(Code)(Java Doc) public Rectangle getBounds(boolean content)(Code)(Java Doc) protected Menu getContextMenu()(Code)(Java Doc) public Object getData()(Code)(Java Doc) public Object getData(String key)(Code)(Java Doc) public String getDisabledStyle()(Code)(Java Doc) public Element getElement()(Code)(Java Doc) protected Element getFocusElement()(Code)(Java Doc) public int getHeight()(Code)(Java Doc) public int getHeight(boolean content)(Code)(Java Doc) public String getId()(Code)(Java Doc) public int getStyle()(Code)(Java Doc) public ToolTip getToolTip()(Code)(Java Doc) public int getWidth()(Code)(Java Doc) public int getWidth(boolean content)(Code)(Java Doc) public void hide()(Code)(Java Doc) public boolean isDisposed()(Code)(Java Doc) public boolean isEnabled()(Code)(Java Doc) public boolean isRendered()(Code)(Java Doc) public boolean isVisible()(Code)(Java Doc) protected void onAttach()(Code)(Java Doc) public void onBaseEvent(BaseEvent be)(Code)(Java Doc) public void onBrowserEvent(Event event)(Code)(Java Doc) protected void onDestroy()(Code)(Java Doc) protected void onDetach()(Code)(Java Doc) protected void onDisable()(Code)(Java Doc) protected void onEnable()(Code)(Java Doc) protected void onHide()(Code)(Java Doc) protected void onHideContextMenu()(Code)(Java Doc) protected void onLoad()(Code)(Java Doc) protected void onRender()(Code)(Java Doc) protected void onResize(int width, int height)(Code)(Java Doc) protected void onRightClick(BaseEvent be)(Code)(Java Doc) protected void onShow()(Code)(Java Doc) protected void onShowContextMenu(int x, int y)(Code)(Java Doc) public void recalculate()(Code)(Java Doc) public void removeAllListeners()(Code)(Java Doc) public void removeFromParent()(Code)(Java Doc) public void removeListener(int eventType, Listener listener)(Code)(Java Doc) public void removeStyleName(String style)(Code)(Java Doc) public void removeWidgetListener(WidgetListener listener)(Code)(Java Doc) protected void render()(Code)(Java Doc) public void setBorders(boolean show)(Code)(Java Doc) public void setBounds(int x, int y, int width, int height)(Code)(Java Doc) public void setBounds(Rectangle rect)(Code)(Java Doc) protected void setContextMenu(Menu menu)(Code)(Java Doc) public void setData(Object data)(Code)(Java Doc) public void setData(String key, Object data)(Code)(Java Doc) public void setDisabledStyle(String style)(Code)(Java Doc) public void setElement(Element elem)(Code)(Java Doc) public void setEnabled(boolean enabled)(Code)(Java Doc) public void setHeight(int height)(Code)(Java Doc) public void setHeight(String height)(Code)(Java Doc) public void setId(String id)(Code)(Java Doc) public void setIntStyleAttribute(String attr, int value)(Code)(Java Doc) public void setPagePosition(int x, int y)(Code)(Java Doc) public void setPixelSize(int width, int height)(Code)(Java Doc) public void setSize(int width, int height)(Code)(Java Doc) public void setSize(String width, String height)(Code)(Java Doc) public void setStyleAttribute(String attr, String value)(Code)(Java Doc) public void setStyleName(String style)(Code)(Java Doc) public void setTitle(String title)(Code)(Java Doc) public void setToolTip(String text)(Code)(Java Doc) public void setToolTip(String title, String text)(Code)(Java Doc) public void setVisible(boolean visible)(Code)(Java Doc) public void setWidth(int width)(Code)(Java Doc) public void setWidth(String width)(Code)(Java Doc) public void show()(Code)(Java Doc) public void unhook(int type, EventListener listener)(Code)(Java Doc)
|
|
|