Example usage for com.google.gwt.user.client.ui NamedFrame getName

List of usage examples for com.google.gwt.user.client.ui NamedFrame getName

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui NamedFrame getName.

Prototype

public String getName() 

Source Link

Document

Gets the name associated with this frame.

Usage

From source file:org.bonitasoft.console.client.view.ConsoleFormPanel.java

License:Apache License

/**
 * Creates a FormPanel that targets a {@link NamedFrame}. The target frame is
 * not physically attached to the form, and must therefore still be added to a
 * panel elsewhere.//from  ww  w  .ja v  a  2  s . c  om
 *
 * <p>
 * When the FormPanel targets an external frame in this way, it will not fire
 * the FormSubmitComplete event.
 * </p>
 *
 * @param frameTarget the {@link NamedFrame} to be targetted
 */
public ConsoleFormPanel(NamedFrame frameTarget) {
    this(frameTarget.getName());
}