Example usage for com.google.gwt.editor.client.impl AbstractAutoFlushEditorDelegate setDriver

List of usage examples for com.google.gwt.editor.client.impl AbstractAutoFlushEditorDelegate setDriver

Introduction

In this page you can find the example usage for com.google.gwt.editor.client.impl AbstractAutoFlushEditorDelegate setDriver.

Prototype

public void setDriver(AutoFlushBeanEditorDriver<?, ?> driver) 

Source Link

Usage

From source file:de.csenk.gwt.commons.editor.client.AbstractAutoFlushBeanEditorDriver.java

License:Apache License

/**
 * {@inheritDoc}// w  ww  .j av a 2 s  . co m
 */
@Override
protected void configureDelegate(AbstractEditorDelegate<T, E> rootDelegate) {
    final AbstractAutoFlushEditorDelegate<T, E> delegate = (AbstractAutoFlushEditorDelegate<T, E>) rootDelegate;
    delegate.setDriver(this);

    super.configureDelegate(rootDelegate);
}