com.vaadin.client.debug.internal.

Class NetworkSection

  • All Implemented Interfaces:

    Section

    public class NetworkSection
    extends Object
    implements Section

    Displays network activity; requests and responses. Currently only displays responses in a simple manner.

    Since:

    7.1

    Author:

    Vaadin Ltd

    • Constructor Detail

      • NetworkSection

        public NetworkSection()
    • Method Detail

      • getTabButton

        public DebugButton getTabButton()

        Description copied from interface: Section

        Returns a button that will be used to activate this section, displayed as a tab in VDebugWindow.

        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:

        getTabButton in interface Section

        Returns:

        section id

      • getControls

        public com.google.gwt.user.client.ui.Widget getControls()

        Description copied from interface: Section

        Returns a widget that is placed on top of the Section content when the Section (tab) is active in the VDebugWindow.

        Specified by:

        getControls in interface Section

        Returns:

        section controls

      • getContent

        public com.google.gwt.user.client.ui.Widget getContent()

        Description copied from interface: Section

        Returns a widget that is the main content of the section, displayed when the section is active in the VDebugWindow.

        Specified by:

        getContent in interface Section

        Returns:

      • show

        public void show()

        Description copied from interface: Section

        Called when the section is activated in VDebugWindow. Provides an opportunity to e.g start timers, add listeners etc.

        Specified by:

        show in interface Section

      • hide

        public void hide()

        Description copied from interface: Section

        Called when the section is deactivated in VDebugWindow. Provides an opportunity to e.g stop timers, remove listeners etc.

        Specified by:

        hide in interface Section