public class

NullLoggingPopup

extends Object
implements HasWidgets
java.lang.Object
   ↳ com.google.gwt.logging.client.NullLoggingPopup

Class Overview

A class which can be substituted in for the BasicLoggingPopup in the the gwt.xml file to disable the default popup log handler.

Summary

Public Constructors
NullLoggingPopup()
Public Methods
void add(Widget w)
Adds a child widget.
void clear()
Removes all child widgets.
Iterator<Widget> iterator()
Gets an iterator for the contained widgets.
boolean remove(Widget w)
Removes a child widget.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.google.gwt.user.client.ui.HasWidgets
From interface java.lang.Iterable

Public Constructors

public NullLoggingPopup ()

Public Methods

public void add (Widget w)

Adds a child widget.

Parameters
w the widget to be added

public void clear ()

Removes all child widgets.

public Iterator<Widget> iterator ()

Gets an iterator for the contained widgets. This iterator is required to implement remove().

public boolean remove (Widget w)

Removes a child widget.

Parameters
w the widget to be removed
Returns
  • true if the widget was present