public static class

Statements.Empty

extends Object
implements Statements
java.lang.Object
   ↳ com.google.gwt.uibinder.rebind.Statements.Empty

Class Overview

Implementation of Statements which does nothing.

Summary

[Expand]
Inherited Fields
From interface com.google.gwt.uibinder.rebind.Statements
Public Constructors
Statements.Empty()
Public Methods
void addDetachStatement(String format, Object... args)
Add a statement to be executed right after the current attached element is detached.
void addInitStatement(String format, Object... params)
Add a statement to be run after everything has been instantiated, in the style of format(String, Object...).
void addStatement(String format, Object... args)
Adds a statement to the block run after fields are declared, in the style of format(String, Object...).
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.google.gwt.uibinder.rebind.Statements

Public Constructors

public Statements.Empty ()

Public Methods

public void addDetachStatement (String format, Object... args)

Add a statement to be executed right after the current attached element is detached. This is useful for doing things that might be expensive while the element is attached to the DOM.

public void addInitStatement (String format, Object... params)

Add a statement to be run after everything has been instantiated, in the style of format(String, Object...).

public void addStatement (String format, Object... args)

Adds a statement to the block run after fields are declared, in the style of format(String, Object...).