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.IsWidget
Interface 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 String
getInfo()
boolean
hasInfo()
void
setEnabled(boolean enabled)
Enables/disables the information widgetvoid
setInfo(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:
true
if more information is available
-
-