package org.dashbuilder.dataset.client.editor; import org.dashbuilder.common.client.editor.LeafAttributeEditor; import org.dashbuilder.dataset.def.BeanDataSetDef; import java.util.Map; /** * <p>The GWT editor contract for beans of type <code>org.dashbuilder.dataset.def.BeanDataSetDef</code>.</p> * * TODO * The attributes generatorClass and paramaterMap should be not directly referenced here, here should be referenced just the org.dashbuilder.dataset.client.editor.BeanDataSetDefAttributesEditor. * But gwt editor inheritance is not working in this situation, due to https://github.com/gwtproject/gwt/issues/6340 * Please refactor it when bug from gwt is fixed. * * @since 0.4.0 */ public interface BeanDataSetDefEditor extends DataSetDefEditor<BeanDataSetDef> { LeafAttributeEditor<String> generatorClass(); LeafAttributeEditor<Map<String, String>> paramaterMap(); }