Example usage for com.google.gwt.editor.client SimpleBeanEditorDriver flush

List of usage examples for com.google.gwt.editor.client SimpleBeanEditorDriver flush

Introduction

In this page you can find the example usage for com.google.gwt.editor.client SimpleBeanEditorDriver flush.

Prototype

T flush();

Source Link

Document

Update the object being edited with the current state of the Editor.

Usage

From source file:org.dashbuilder.client.widgets.dataset.editor.workflow.DataSetEditorWorkflow.java

License:Apache License

public void flush(final SimpleBeanEditorDriver driver) {
    checkDataSetDefNotNull();/* w w w. ja v a2s.c o  m*/

    this.violations.clear();

    driver.flush();
    afterFlush();

    // Validations for current step.
    if (stepValidator != null) {
        stepValidator.execute();
    }
}