Interface SQLDataSetDefAttributesEditor
-
- All Superinterfaces:
com.google.gwt.editor.client.Editor<org.dashbuilder.dataset.def.SQLDataSetDef>,com.google.gwt.editor.client.HasEditorDelegate<org.dashbuilder.dataset.def.SQLDataSetDef>,com.google.gwt.editor.client.ValueAwareEditor<org.dashbuilder.dataset.def.SQLDataSetDef>
public interface SQLDataSetDefAttributesEditor extends com.google.gwt.editor.client.ValueAwareEditor<org.dashbuilder.dataset.def.SQLDataSetDef>The GWT editor contract for the specific attributes of type
org.dashbuilder.dataset.def.SQLDataSetDef.Used to to edit the following sub-set of attributes:
- dataSource
- dbSchema
- dbTable
- dbSQL
It is a ValueAwareEditor as must nullify dbTable or dbSQL editors at runtime depending on instance value.
- Since:
- 0.4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.dashbuilder.common.client.editor.LeafAttributeEditor<String>dataSource()org.dashbuilder.common.client.editor.LeafAttributeEditor<String>dbSchema()org.dashbuilder.common.client.editor.LeafAttributeEditor<String>dbSQL()org.dashbuilder.common.client.editor.LeafAttributeEditor<String>dbTable()booleanisUsingQuery()
-
-
-
Method Detail
-
dataSource
org.dashbuilder.common.client.editor.LeafAttributeEditor<String> dataSource()
-
dbSchema
org.dashbuilder.common.client.editor.LeafAttributeEditor<String> dbSchema()
-
dbTable
org.dashbuilder.common.client.editor.LeafAttributeEditor<String> dbTable()
-
dbSQL
org.dashbuilder.common.client.editor.LeafAttributeEditor<String> dbSQL()
-
isUsingQuery
@Ignore boolean isUsingQuery()
-
-