com.google.gwt.editor.client.SimpleBeanEditorDriver Java Examples

The following examples show how to use com.google.gwt.editor.client.SimpleBeanEditorDriver. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DataSetProviderTypeWorkflowTest.java    From dashbuilder with Apache License 2.0 6 votes vote down vote up
@Before
public void setup() throws Exception {

    // Bean instantiation mocks.
    when( beanManager.lookupBean( DataSetDefProviderTypeDriver.class ) ).thenReturn(
            simpleBeanEditorDriverSyncBeanDef );
    when( simpleBeanEditorDriverSyncBeanDef.newInstance() ).thenAnswer( new Answer<SimpleBeanEditorDriver>() {
        @Override
        public SimpleBeanEditorDriver answer( InvocationOnMock invocationOnMock ) throws Throwable {
            return dataSetDefProviderTypeDriver;
        }
    } );

    presenter = new DataSetProviderTypeWorkflow( clientServices,
                                                 validatorProvider,
                                                 beanManager,
                                                 providerTypeEditor,
                                                 saveRequestEvent,
                                                 cancelRequestEvent,
                                                 testDataSetEvent,
                                                 view );
    when( providerTypeEditor.provider() ).thenReturn( provider );
}
 
Example #2
Source File: DataSetEditorWorkflow.java    From dashbuilder with Apache License 2.0 5 votes vote down vote up
public void flush(final SimpleBeanEditorDriver driver) {
    checkDataSetDefNotNull();

    this.violations.clear();

    driver.flush();
    afterFlush();

    // Validations for current step.
    if (stepValidator != null) {
        stepValidator.execute();
    }
}
 
Example #3
Source File: ElasticSearchDataSetEditWorkflow.java    From dashbuilder with Apache License 2.0 4 votes vote down vote up
@Override
protected Class<? extends SimpleBeanEditorDriver<ElasticSearchDataSetDef, ElasticSearchDataSetDefEditor>> getDriverClass() {
    return ElasticSearchDataSetDefDriver.class;
}
 
Example #4
Source File: SQLDataSetEditWorkflow.java    From dashbuilder with Apache License 2.0 4 votes vote down vote up
@Override
protected Class<? extends SimpleBeanEditorDriver<SQLDataSetDef, SQLDataSetDefEditor>> getDriverClass() {
    return SQLDataSetDefDriver.class;
}
 
Example #5
Source File: CSVDataSetEditWorkflow.java    From dashbuilder with Apache License 2.0 4 votes vote down vote up
@Override
protected Class<? extends SimpleBeanEditorDriver<CSVDataSetDef, CSVDataSetDefEditor>> getDriverClass() {
    return CSVDataSetDefDriver.class;
}
 
Example #6
Source File: BeanDataSetEditWorkflow.java    From dashbuilder with Apache License 2.0 4 votes vote down vote up
@Override
protected Class<? extends SimpleBeanEditorDriver<BeanDataSetDef, BeanDataSetDefEditor>> getDriverClass() {
    return BeanDataSetDefDriver.class;
}
 
Example #7
Source File: CSVDataSetBasicAttributesWorkflow.java    From dashbuilder with Apache License 2.0 4 votes vote down vote up
@Override
protected Class<? extends SimpleBeanEditorDriver<CSVDataSetDef, CSVDataSetDefAttributesEditor>> getDriverClass() {
    return CSVDataSetDefAttributesDriver.class;
}
 
Example #8
Source File: ElasticSearchDataSetBasicAttributesWorkflow.java    From dashbuilder with Apache License 2.0 4 votes vote down vote up
@Override
protected Class<? extends SimpleBeanEditorDriver<ElasticSearchDataSetDef, ElasticSearchDataSetDefAttributesEditor>> getDriverClass() {
    return ElasticSearchDataSetDefAttributesDriver.class;
}
 
Example #9
Source File: BeanDataSetBasicAttributesWorkflow.java    From dashbuilder with Apache License 2.0 4 votes vote down vote up
@Override
protected Class<? extends SimpleBeanEditorDriver<BeanDataSetDef, BeanDataSetDefAttributesEditor>> getDriverClass() {
    return BeanDataSetDefAttributesDriver.class;
}
 
Example #10
Source File: SQLDataSetBasicAttributesWorkflow.java    From dashbuilder with Apache License 2.0 4 votes vote down vote up
@Override
protected Class<? extends SimpleBeanEditorDriver<SQLDataSetDef, SQLDataSetDefAttributesEditor>> getDriverClass() {
    return SQLDataSetDefAttributesDriver.class;
}
 
Example #11
Source File: DataSetEditWorkflow.java    From dashbuilder with Apache License 2.0 votes vote down vote up
protected abstract Class<? extends SimpleBeanEditorDriver<T, E>> getDriverClass(); 
Example #12
Source File: DataSetBasicAttributesWorkflow.java    From dashbuilder with Apache License 2.0 votes vote down vote up
protected abstract Class<? extends SimpleBeanEditorDriver<T, E>> getDriverClass();