Interface InfoIF
-
- All Superinterfaces:
com.google.gwt.user.client.ui.IsWidget
- All Known Implementing Classes:
Info
public interface InfoIF extends com.google.gwt.user.client.ui.IsWidgetInterface defining a widget which can store further information about a dataset- Author:
- Guy Griffiths
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetInfo()booleanhasInfo()voidsetEnabled(boolean enabled)Enables/disables the information widgetvoidsetInfo(String moreInfo)Sets the information to store
-
-
-
Method Detail
-
setInfo
void setInfo(String moreInfo)
Sets the information to store
-
getInfo
String getInfo()
- Returns:
- The stored information
-
setEnabled
void setEnabled(boolean enabled)
Enables/disables the information widget- Parameters:
enabled-
-
hasInfo
boolean hasInfo()
- Returns:
trueif more information is available
-
-