|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.google.gwt.user.client.ui.UIObject
com.google.gwt.user.client.ui.Widget
com.extjs.gxt.ui.client.widget.Component
public abstract class Component
Base class for GXT components. All subclasses of Component can automatically
participate in the standard GXT component lifecycle of creation, attach and
detach. They also have automatic support for basic hide/show and
enable/disable behavior. Component allows any subclass to be lazy-rendered
into any GXT Container
. Components added to a GWT Panel
will
be rendered when inserted. All visual widgets that require rendering into a
layout should subclass Component (or BoxComponent
if managed box
model handling is required).
BoxComponent
.
All components are registered and unregistered with the
ComponentManager
when the are attached and detached.
BaseEvent.setCancelled(boolean)
.BaseEvent.setCancelled(boolean)
.BaseEvent.setCancelled(boolean)
.onComponentEvent(ComponentEvent)
is called. Listeners can call
BaseEvent.setCancelled(boolean)
to cancel the processing of the
event.BaseEvent.setCancelled(boolean)
.BaseEvent.setCancelled(boolean)
.
ComponentManager
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.google.gwt.user.client.ui.UIObject |
---|
com.google.gwt.user.client.ui.UIObject.DebugIdImpl, com.google.gwt.user.client.ui.UIObject.DebugIdImplEnabled |
Field Summary | |
---|---|
protected boolean |
afterRender
|
protected java.util.List<ComponentAttachable> |
attachables
|
protected java.lang.String |
baseStyle
The base style is typically set as the component's style when rendered. |
protected boolean |
disabled
True if the component is disabled. |
protected java.lang.String |
disabledStyle
The style used when a component is disabled (defaults to 'x-item-disabled'). |
protected int |
disableTextSelection
|
protected com.google.gwt.user.client.Element |
dummy
|
protected boolean |
focusable
True if the component is can receive focus (defaults to false). |
protected boolean |
hidden
True if this component is hidden. |
protected boolean |
mask
|
protected java.lang.String |
maskMessage
|
protected java.lang.String |
maskMessageStyleName
|
protected boolean |
monitorWindowResize
|
protected boolean |
rendered
True if this component has been rendered. |
protected com.google.gwt.event.shared.HandlerRegistration |
resizeHandler
|
protected boolean |
setElementRender
|
protected java.lang.String |
stateId
|
protected java.util.List<SwallowEvent> |
swallowEvents
|
protected ToolTip |
toolTip
|
protected int |
windowResizeDelay
|
protected DelayedTask |
windowResizeTask
|
Fields inherited from class com.google.gwt.user.client.ui.UIObject |
---|
DEBUG_ID_PREFIX |
Constructor Summary | |
---|---|
|
Component()
Creates a new component. |
protected |
Component(com.google.gwt.user.client.Element element,
boolean attach)
Specialized constructor for creating components from existing nodes. |
Method Summary | ||
---|---|---|
protected void |
addAttachable(ComponentAttachable a)
|
|
void |
addListener(EventType eventType,
Listener<? extends BaseEvent> listener)
Appends an event handler to this component. |
|
void |
addPlugin(ComponentPlugin plugin)
Adds a component plugin. |
|
void |
addStyleName(java.lang.String style)
Adds a CSS style name to the component's underlying element. |
|
protected void |
addStyleOnOver(com.google.gwt.user.client.Element elem,
java.lang.String style)
Adds a style to the given element on mouseover. |
|
void |
addWidgetListener(WidgetListener listener)
Adds a listener to receive widget events. |
|
protected void |
afterRender()
Called after the component has been rendered and is attached for the first time. |
|
protected void |
applyState(java.util.Map<java.lang.String,java.lang.Object> state)
|
|
protected void |
assertAfterRender()
|
|
protected void |
assertPreRender()
|
|
protected void |
beforeRender()
Called before the component has been rendered. |
|
protected void |
blur()
Tries to remove focus from the component. |
|
void |
clearState()
Clears the component's state. |
|
protected ComponentEvent |
createComponentEvent(com.google.gwt.user.client.Event event)
|
|
protected Observable |
createObservable()
|
|
protected void |
createStyles(java.lang.String baseStyle)
|
|
void |
disable()
Disable this component. |
|
protected void |
disableContextMenu(boolean disable)
Enables and disables the component's context menu. |
|
void |
disableEvents(boolean disable)
True to disable event processing. |
|
void |
disableTextSelection(boolean disable)
Enables and disables text selection for the component. |
|
protected void |
doAttachChildren()
|
|
protected void |
doDetachChildren()
|
|
El |
el()
Returns the component's el instance. |
|
void |
enable()
Enable this component. |
|
void |
enableEvents(boolean enable)
Enables or disables event processing. |
|
boolean |
fireEvent(EventType type)
Fires an event with the given event type. |
|
boolean |
fireEvent(EventType eventType,
BaseEvent be)
Fires an event. |
|
boolean |
fireEvent(EventType type,
ComponentEvent ce)
Fires the specified event with the given event type. |
|
El |
fly(com.google.gwt.user.client.Element elem)
Returns the global flyweight instance. |
|
void |
focus()
Try to focus this component. |
|
protected void |
frame()
|
|
AriaSupport |
getAriaSupport()
Returns the ARIA support configuration. |
|
java.lang.String |
getBaseStyle()
Returns the component's base style. |
|
boolean |
getBorders()
Returns the component's border state. |
|
Menu |
getContextMenu()
Returns the component's context menu. |
|
|
getData(java.lang.String key)
Returns the application defined property for the given name, or null if it has not been set. |
|
com.google.gwt.user.client.Element |
getElement()
|
|
protected El |
getFocusEl()
|
|
FocusManagerSupport |
getFocusSupport()
Returns the focus manager support configuration. |
|
Style.HideMode |
getHideMode()
Returns the component's hide mode. |
|
java.lang.String |
getId()
Returns the id of this component. |
|
java.lang.String |
getItemId()
Returns the item id of this component. |
|
java.util.List<Listener<? extends BaseEvent>> |
getListeners(EventType eventType)
Returns a list of listeners registered for the given event type. |
|
|
getModel()
Returns the component's model. |
|
protected Observable |
getObservable()
|
|
java.util.List<ComponentPlugin> |
getPlugins()
Returns the component's plugins. |
|
java.util.Map<java.lang.String,java.lang.Object> |
getState()
Returns the component's state. |
|
java.lang.String |
getStateId()
Returns the component's state id. |
|
int |
getTabIndex()
Returns the component's tab index. |
|
java.lang.String |
getTitle()
|
|
ToolTip |
getToolTip()
Returns the component's tool tip. |
|
protected int |
getWindowResizeDelay()
Returns the window resize delay. |
|
boolean |
hasListeners()
Returns true if the observable has any listeners. |
|
boolean |
hasListeners(EventType eventType)
Returns true if the observable has listeners for the given event type. |
|
void |
hide()
Hide this component. |
|
void |
hideToolTip()
Hides the component's tool tip (if one exists). |
|
protected void |
initState()
|
|
boolean |
isDisabledEvents()
Returns true if events are disabled. |
|
boolean |
isDisableTextSelection()
Returns true if text selection is disabled. |
|
boolean |
isEnabled()
Returns true if the component is enabled. |
|
boolean |
isMasked()
Returns true if the component is masked. |
|
protected boolean |
isMonitorWindowResize()
Returns true if browser resizing is monitored |
|
boolean |
isRendered()
Returns true if the component is rendered. |
|
boolean |
isStateful()
Returns true if the component is saving and restore it's state. |
|
boolean |
isVisible()
Returns true if the component is visible. |
|
boolean |
isVisible(boolean deep)
Returns true if the component is visible. |
|
El |
mask()
Puts a mask over this component to disable user interaction. |
|
El |
mask(java.lang.String message)
Puts a mask over this component to disable user interaction. |
|
El |
mask(java.lang.String message,
java.lang.String messageStyleName)
Puts a mask over this component to disable user interaction. |
|
protected void |
notifyHide()
|
|
protected void |
notifyShow()
|
|
protected void |
onAttach()
|
|
void |
onBrowserEvent(com.google.gwt.user.client.Event event)
Components delegate event handling to onComponentEvent(ComponentEvent) . |
|
void |
onComponentEvent(ComponentEvent ce)
Any events a component receives will be forwarded to this method. |
|
protected void |
onDetach()
|
|
protected void |
onDetachHelper()
|
|
protected void |
onDisable()
|
|
protected void |
onEnable()
|
|
protected void |
onEnsureDebugId(java.lang.String baseID)
|
|
protected void |
onHide()
|
|
protected void |
onHideContextMenu()
|
|
protected void |
onLoad()
|
|
protected void |
onRender(com.google.gwt.user.client.Element target,
int index)
Subclasses must override and ensure setElement is called for lazy rendered components. |
|
protected void |
onRightClick(ComponentEvent ce)
|
|
protected void |
onShow()
|
|
protected void |
onShowContextMenu(int x,
int y)
|
|
protected void |
onWindowResize(int width,
int height)
|
|
protected ComponentEvent |
previewEvent(EventType type,
ComponentEvent ce)
|
|
void |
recalculate()
Called when the component is in a LayoutContainer and the container's layout executes. |
|
void |
removeAllListeners()
Removes all listeners. |
|
protected void |
removeAttachagle(ComponentAttachable a)
|
|
void |
removeFromParent()
|
|
void |
removeListener(EventType eventType,
Listener<? extends BaseEvent> listener)
Removes a listener. |
|
void |
removeStyleName(java.lang.String style)
Removes a CSS style name from the component's underlying element. |
|
protected void |
removeStyleOnOver(com.google.gwt.user.client.Element elem)
|
|
void |
removeSwallow(SwallowEvent e)
Removes a swallow event. |
|
void |
removeToolTip()
|
|
void |
removeWidgetListener(WidgetListener listener)
Removes a listener. |
|
void |
render(com.google.gwt.user.client.Element target)
Renders the element. |
|
void |
render(com.google.gwt.user.client.Element target,
int index)
Renders the element. |
|
void |
repaint()
Repaints the component if rendered. |
|
void |
saveState()
Saves the component's current state by passing it to the StateManager and saving it using the state id or component id
as the key. |
|
protected void |
setAriaRole(java.lang.String roleName)
|
|
protected void |
setAriaState(java.lang.String stateName,
java.lang.String stateValue)
|
|
void |
setAriaSupport(AriaSupport ariaSupport)
Sets the ARIA support configuration. |
|
void |
setBorders(boolean show)
Adds or removes a border. |
|
void |
setContextMenu(Menu menu)
Sets the component's context menu. |
|
void |
setData(java.lang.String key,
java.lang.Object data)
Sets the application defined property with the given name. |
|
protected void |
setEl(El el)
|
|
void |
setElement(com.google.gwt.user.client.Element elem)
|
|
protected void |
setElement(com.google.gwt.user.client.Element elem,
com.google.gwt.user.client.Element parent,
int index)
|
|
void |
setEnabled(boolean enabled)
Convenience function for setting disabled/enabled by boolean. |
|
protected void |
setFiresEvents(boolean firesEvents)
|
|
void |
setHeight(java.lang.String height)
Overrides UIObject and does nothing. |
|
void |
setHideMode(Style.HideMode hideMode)
Sets the components hide mode (default to HideMode.DISPLAY). |
|
void |
setId(java.lang.String id)
Sets the component's id. |
|
void |
setIntStyleAttribute(java.lang.String attr,
int value)
Sets a style attribute. |
|
void |
setItemId(java.lang.String id)
Sets the component's item id. |
|
protected void |
setModel(ModelData model)
|
|
protected void |
setMonitorWindowResize(boolean monitorWindowResize)
True to have onWindowResize executed when the browser window is resized (default to false). |
|
protected void |
setParent(com.google.gwt.user.client.ui.Widget parent)
|
|
void |
setPixelSize(int width,
int height)
Overrides UIObject and does nothing. |
|
void |
setSize(java.lang.String width,
java.lang.String height)
Overrides UIObject and does nothing. |
|
void |
setStateful(boolean stateful)
A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startup (defaults to false). |
|
void |
setStateId(java.lang.String stateId)
Sets the component's state id which is a unique id for this component to use for state management purposes (defaults to the component id if one was set, otherwise null if the component is using a generated id). |
|
void |
setStyleAttribute(java.lang.String attr,
java.lang.String value)
Sets a style attribute. |
|
void |
setStyleName(java.lang.String style)
|
|
void |
setTabIndex(int tabIndex)
Sets the component's tab index. |
|
void |
setTitle(java.lang.String title)
|
|
void |
setToolTip(java.lang.String text)
Sets the component's tool tip. |
|
void |
setToolTip(ToolTipConfig config)
Sets the component's tool tip with the given config. |
|
void |
setVisible(boolean visible)
Convenience function to hide or show this component by boolean. |
|
void |
setWidth(java.lang.String width)
Overrides UIObject and does nothing. |
|
protected void |
setWindowResizeDelay(int delay)
Sets delay in milliseconds used to buffer window resizing (defaults to 100). |
|
void |
setZIndex(int zIndex)
|
|
void |
show()
Show this component. |
|
void |
sinkEvents(int eventBitsToAdd)
|
|
SwallowEvent |
swallowEvent(EventType eventType,
com.google.gwt.user.client.Element element,
boolean preventDefault)
Adds a swallow event. |
|
SwallowEvent |
swallowEvent(SwallowEvent e)
|
|
java.lang.String |
toString()
|
|
protected void |
unframe()
|
|
void |
unmask()
Unmasks the component. |
Methods inherited from class com.google.gwt.user.client.ui.Widget |
---|
addAttachHandler, addBitlessDomHandler, addDomHandler, addHandler, asWidget, asWidgetOrNull, createHandlerManager, delegateEvent, fireEvent, getHandlerCount, getLayoutData, getParent, isAttached, isOrWasAttached, onUnload, setLayoutData |
Methods inherited from class com.google.gwt.user.client.ui.UIObject |
---|
addStyleDependentName, ensureDebugId, ensureDebugId, ensureDebugId, getAbsoluteLeft, getAbsoluteTop, getOffsetHeight, getOffsetWidth, getStyleElement, getStyleName, getStyleName, getStylePrimaryName, getStylePrimaryName, isVisible, removeStyleDependentName, setElement, setStyleDependentName, setStyleName, setStyleName, setStyleName, setStylePrimaryName, setStylePrimaryName, setVisible, sinkBitlessEvent, unsinkEvents |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected java.lang.String baseStyle
protected boolean disabled
protected java.lang.String disabledStyle
protected boolean focusable
protected boolean hidden
protected boolean rendered
protected boolean afterRender
protected com.google.gwt.user.client.Element dummy
protected java.lang.String stateId
protected java.util.List<SwallowEvent> swallowEvents
protected ToolTip toolTip
protected boolean mask
protected java.lang.String maskMessage
protected java.lang.String maskMessageStyleName
protected java.util.List<ComponentAttachable> attachables
protected boolean setElementRender
protected boolean monitorWindowResize
protected int windowResizeDelay
protected int disableTextSelection
protected DelayedTask windowResizeTask
protected com.google.gwt.event.shared.HandlerRegistration resizeHandler
Constructor Detail |
---|
public Component()
protected Component(com.google.gwt.user.client.Element element, boolean attach)
element
- the elementattach
- true to attach the componentMethod Detail |
---|
public void addListener(EventType eventType, Listener<? extends BaseEvent> listener)
addListener
in interface Observable
eventType
- the eventTypelistener
- the listener to be addedpublic void addPlugin(ComponentPlugin plugin)
plugin
- the component pluginpublic void addStyleName(java.lang.String style)
addStyleName
in class com.google.gwt.user.client.ui.UIObject
style
- the CSS style name to addpublic void addWidgetListener(WidgetListener listener)
listener
- the listener to be addedpublic void clearState()
public void disable()
public void disableEvents(boolean disable)
disable
- true to disablepublic void disableTextSelection(boolean disable)
disable
- true
to disable text selectionpublic El el()
public void enable()
public void enableEvents(boolean enable)
enable
- the enable statepublic boolean fireEvent(EventType type)
type
- the event type
false
if any listeners return false
public boolean fireEvent(EventType eventType, BaseEvent be)
Observable
fireEvent
in interface Observable
eventType
- eventType the event typebe
- the base event
public boolean fireEvent(EventType type, ComponentEvent ce)
type
- the event typece
- the base event
false
if any listeners return false
public El fly(com.google.gwt.user.client.Element elem)
elem
- the new wrapped dom element
public void focus()
public AriaSupport getAriaSupport()
public java.lang.String getBaseStyle()
public boolean getBorders()
public Menu getContextMenu()
public <X> X getData(java.lang.String key)
null
if it has not been set.
key
- the name of the property
null
if it has not been setpublic com.google.gwt.user.client.Element getElement()
getElement
in class com.google.gwt.user.client.ui.UIObject
public FocusManagerSupport getFocusSupport()
public Style.HideMode getHideMode()
public java.lang.String getId()
public java.lang.String getItemId()
public java.util.List<Listener<? extends BaseEvent>> getListeners(EventType eventType)
Observable
getListeners
in interface Observable
eventType
- the event type
public <X> X getModel()
public java.util.List<ComponentPlugin> getPlugins()
public java.util.Map<java.lang.String,java.lang.Object> getState()
saveState()
.
public java.lang.String getStateId()
public int getTabIndex()
public java.lang.String getTitle()
getTitle
in class com.google.gwt.user.client.ui.UIObject
public ToolTip getToolTip()
public boolean hasListeners()
Observable
hasListeners
in interface Observable
public boolean hasListeners(EventType eventType)
Observable
hasListeners
in interface Observable
eventType
- the event type
public void hide()
public void hideToolTip()
public boolean isDisabledEvents()
public boolean isDisableTextSelection()
public boolean isEnabled()
true
if the component is enabled.
public boolean isMasked()
public boolean isRendered()
true
if the component is rendered.
public boolean isStateful()
public boolean isVisible()
true
if the component is visible.
isVisible
in class com.google.gwt.user.client.ui.UIObject
public boolean isVisible(boolean deep)
true
if the component is visible.
deep
- true to search up the component hierarchypublic El mask()
public El mask(java.lang.String message)
message
- a message to display in the mask
public El mask(java.lang.String message, java.lang.String messageStyleName)
message
- a message to display in the maskmessageStyleName
- a CSS style name to be applied to the message text
public void onBrowserEvent(com.google.gwt.user.client.Event event)
onComponentEvent(ComponentEvent)
. Subclasses should not override.
onBrowserEvent
in interface com.google.gwt.user.client.EventListener
onBrowserEvent
in class com.google.gwt.user.client.ui.Widget
event
- the dom eventpublic void onComponentEvent(ComponentEvent ce)
onBrowserEvent(com.google.gwt.user.client.Event)
method
should not be overridden or modified.
ce
- the base eventpublic void recalculate()
public void removeAllListeners()
removeAllListeners
in interface Observable
public void removeFromParent()
removeFromParent
in class com.google.gwt.user.client.ui.Widget
public void removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
removeListener
in interface Observable
eventType
- the event typelistener
- the listener to be removedpublic void removeStyleName(java.lang.String style)
removeStyleName
in class com.google.gwt.user.client.ui.UIObject
style
- the CSS style name to removepublic void removeSwallow(SwallowEvent e)
e
- the swallow event to be removedpublic void removeToolTip()
public void removeWidgetListener(WidgetListener listener)
listener
- the listener to be removedpublic void render(com.google.gwt.user.client.Element target)
target
- the element this component should be rendered intopublic void render(com.google.gwt.user.client.Element target, int index)
target
- the element this component should be rendered intoindex
- the index within the container before which this
component will be inserted (defaults to appending to the end of
the container if value is -1)public void repaint()
public void saveState()
StateManager
and saving it using the state id or component id
as the key.
public void setAriaSupport(AriaSupport ariaSupport)
ariaSupport
- the ARIA support configurationpublic void setBorders(boolean show)
show
- true
to display a borderpublic void setContextMenu(Menu menu)
menu
- the context menupublic void setData(java.lang.String key, java.lang.Object data)
key
- the name of the propertydata
- the new value for the propertypublic void setElement(com.google.gwt.user.client.Element elem)
setElement
in class com.google.gwt.user.client.ui.UIObject
public void setEnabled(boolean enabled)
enabled
- the enabled statepublic void setHeight(java.lang.String height)
setHeight
in class com.google.gwt.user.client.ui.UIObject
public void setHideMode(Style.HideMode hideMode)
hideMode
- the hide mode.public void setId(java.lang.String id)
id
- the new idpublic void setIntStyleAttribute(java.lang.String attr, int value)
attr
- the attributevalue
- the attribute valuepublic void setItemId(java.lang.String id)
id
- the item idpublic void setPixelSize(int width, int height)
setPixelSize
in class com.google.gwt.user.client.ui.UIObject
public void setSize(java.lang.String width, java.lang.String height)
setSize
in class com.google.gwt.user.client.ui.UIObject
public void setStateful(boolean stateful)
stateId
or id
assigned for
state to be managed. Auto-generated ids are not guaranteed to be stable
across page loads and cannot be relied upon to save and restore the same
state for a component.
stateful
- true to enable statepublic void setStateId(java.lang.String stateId)
stateId
- the state idpublic void setStyleAttribute(java.lang.String attr, java.lang.String value)
attr
- the attributevalue
- the attribute valuepublic void setStyleName(java.lang.String style)
setStyleName
in class com.google.gwt.user.client.ui.UIObject
public void setTabIndex(int tabIndex)
tabIndex
- the tab indexpublic void setTitle(java.lang.String title)
setTitle
in class com.google.gwt.user.client.ui.UIObject
public void setToolTip(java.lang.String text)
text
- the textpublic void setToolTip(ToolTipConfig config)
config
- the tool tip configpublic void setVisible(boolean visible)
setVisible
in class com.google.gwt.user.client.ui.UIObject
visible
- the visible statepublic void setWidth(java.lang.String width)
setWidth
in class com.google.gwt.user.client.ui.UIObject
public void setZIndex(int zIndex)
public void show()
public void sinkEvents(int eventBitsToAdd)
sinkEvents
in class com.google.gwt.user.client.ui.Widget
public SwallowEvent swallowEvent(EventType eventType, com.google.gwt.user.client.Element element, boolean preventDefault)
eventType
- the event typeelement
- the target elementpreventDefault
- true to prevent the default action
public SwallowEvent swallowEvent(SwallowEvent e)
public java.lang.String toString()
toString
in class com.google.gwt.user.client.ui.UIObject
public void unmask()
protected void addAttachable(ComponentAttachable a)
protected void addStyleOnOver(com.google.gwt.user.client.Element elem, java.lang.String style)
elem
- the over elementstyle
- the style to addprotected void afterRender()
protected void applyState(java.util.Map<java.lang.String,java.lang.Object> state)
protected void assertAfterRender()
protected void assertPreRender()
protected void beforeRender()
protected void blur()
protected ComponentEvent createComponentEvent(com.google.gwt.user.client.Event event)
protected Observable createObservable()
protected void createStyles(java.lang.String baseStyle)
protected void disableContextMenu(boolean disable)
disable
- true
to disable the context menuprotected void doAttachChildren()
doAttachChildren
in class com.google.gwt.user.client.ui.Widget
protected void doDetachChildren()
doDetachChildren
in class com.google.gwt.user.client.ui.Widget
protected void frame()
protected El getFocusEl()
protected Observable getObservable()
protected int getWindowResizeDelay()
protected void initState()
protected boolean isMonitorWindowResize()
protected void notifyHide()
protected void notifyShow()
protected void onAttach()
onAttach
in class com.google.gwt.user.client.ui.Widget
protected void onDetach()
onDetach
in class com.google.gwt.user.client.ui.Widget
protected void onDetachHelper()
protected void onDisable()
protected void onEnable()
protected void onEnsureDebugId(java.lang.String baseID)
onEnsureDebugId
in class com.google.gwt.user.client.ui.UIObject
protected void onHide()
protected void onHideContextMenu()
protected void onLoad()
onLoad
in class com.google.gwt.user.client.ui.Widget
protected void onRender(com.google.gwt.user.client.Element target, int index)
target
- the target elementindex
- the insert locationprotected void onRightClick(ComponentEvent ce)
protected void onShow()
protected void onShowContextMenu(int x, int y)
protected void onWindowResize(int width, int height)
protected ComponentEvent previewEvent(EventType type, ComponentEvent ce)
protected void removeAttachagle(ComponentAttachable a)
protected void removeStyleOnOver(com.google.gwt.user.client.Element elem)
protected void setAriaRole(java.lang.String roleName)
protected void setAriaState(java.lang.String stateName, java.lang.String stateValue)
protected void setEl(El el)
protected void setElement(com.google.gwt.user.client.Element elem, com.google.gwt.user.client.Element parent, int index)
protected void setFiresEvents(boolean firesEvents)
protected void setModel(ModelData model)
protected void setMonitorWindowResize(boolean monitorWindowResize)
monitorWindowResize
- true to monitor window resizingprotected void setParent(com.google.gwt.user.client.ui.Widget parent)
protected void setWindowResizeDelay(int delay)
delay
- the delayprotected void unframe()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |