List of usage examples for com.google.gwt.editor.client SimpleBeanEditorDriver flush
T flush();
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(); } }