List of usage examples for com.google.gwt.editor.client HasEditorDelegate setDelegate
void setDelegate(EditorDelegate<T> delegate);
From source file:com.github.apetrelli.gwtintegration.editor.client.widget.LeafValueEditorDecorator.java
License:Apache License
@Override public void setDelegate(EditorDelegate<T> delegate) { if (editor instanceof HasEditorDelegate) { @SuppressWarnings({ "unchecked", "rawtypes" }) HasEditorDelegate<T> hasDelegate = (HasEditorDelegate) editor; hasDelegate.setDelegate(delegate); }//from w w w .ja v a2s .c o m }