List of usage examples for com.google.gwt.editor.client.impl AbstractAutoFlushEditorDelegate setDriver
public void setDriver(AutoFlushBeanEditorDriver<?, ?> driver)
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); }