Package com.vaadin.client.debug.internal
Class LogSection
- java.lang.Object
-
- com.vaadin.client.debug.internal.LogSection
-
-
Constructor Summary
Constructors Constructor Description LogSection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.google.gwt.user.client.ui.WidgetgetContent()Returns a widget that is the main content of the section, displayed when the section is active in theVDebugWindow.com.google.gwt.user.client.ui.WidgetgetControls()Returns a widget that is placed on top of the Section content when the Section (tab) is active in theVDebugWindow.intgetLimit()Gets the current log row limit.DebugButtongetTabButton()Returns a button that will be used to activate this section, displayed as a tab inVDebugWindow.voidhide()Called when the section is deactivated inVDebugWindow.voidmeta(ApplicationConnection ac, ValueMap meta)voidsetLimit(int limit)Sets the log row limit.voidshow()Called when the section is activated inVDebugWindow.voiduidl(ApplicationConnection ac, ValueMap uidl)
-
-
-
Method Detail
-
setLimit
public void setLimit(int limit)
Sets the log row limit.- Parameters:
limit- The limit
-
getLimit
public int getLimit()
Gets the current log row limit.- Returns:
-
getTabButton
public DebugButton getTabButton()
Description copied from interface:SectionReturns a button that will be used to activate this section, displayed as a tab inVDebugWindow.The same instance must be returned each time this method is called.
The button should preferably only have an icon (no caption), and should have a longer description as title (tooltip).
- Specified by:
getTabButtonin interfaceSection- Returns:
- section id
-
getControls
public com.google.gwt.user.client.ui.Widget getControls()
Description copied from interface:SectionReturns a widget that is placed on top of the Section content when the Section (tab) is active in theVDebugWindow.- Specified by:
getControlsin interfaceSection- Returns:
- section controls
-
getContent
public com.google.gwt.user.client.ui.Widget getContent()
Description copied from interface:SectionReturns a widget that is the main content of the section, displayed when the section is active in theVDebugWindow.- Specified by:
getContentin interfaceSection- Returns:
-
show
public void show()
Description copied from interface:SectionCalled when the section is activated inVDebugWindow. Provides an opportunity to e.g start timers, add listeners etc.
-
hide
public void hide()
Description copied from interface:SectionCalled when the section is deactivated inVDebugWindow. Provides an opportunity to e.g stop timers, remove listeners etc.
-
meta
public void meta(ApplicationConnection ac, ValueMap meta)
-
uidl
public void uidl(ApplicationConnection ac, ValueMap uidl)
-
-