List of usage examples for com.google.gwt.user.client.ui NamedFrame getName
public String getName()
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()); }