Interface CopyrightInfoIF
-
- All Superinterfaces:
com.google.gwt.user.client.ui.IsWidget
- All Known Implementing Classes:
CopyrightInfo
public interface CopyrightInfoIF extends com.google.gwt.user.client.ui.IsWidget
Interface defining a widget to show more copyright information- Author:
- Guy Griffiths
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCopyrightInfo()
boolean
hasCopyright()
void
setCopyrightInfo(String copyright)
Sets the copyright messagevoid
setEnabled(boolean enabled)
Enables/disables this widget
-
-
-
Method Detail
-
setCopyrightInfo
void setCopyrightInfo(String copyright)
Sets the copyright message
-
getCopyrightInfo
String getCopyrightInfo()
- Returns:
- The copyright message
-
setEnabled
void setEnabled(boolean enabled)
Enables/disables this widget
-
hasCopyright
boolean hasCopyright()
- Returns:
true
if copyright information is available
-
-