diff options
Diffstat (limited to 'libjava/java/beans/Visibility.java')
-rw-r--r-- | libjava/java/beans/Visibility.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/beans/Visibility.java b/libjava/java/beans/Visibility.java index f474f4c..82c0fa1 100644 --- a/libjava/java/beans/Visibility.java +++ b/libjava/java/beans/Visibility.java @@ -58,21 +58,21 @@ public interface Visibility { * Tells whether the Bean can run without a GUI or not. * @return false if Bean can run without a GUI, else true. */ - public abstract boolean needsGui(); + boolean needsGui(); /** * Tells whether Bean is trying not to use the GUI. * If needsGui() is true, this method should always return false. * @return true if definitely not using GUI, otherwise false. */ - public abstract boolean avoidingGui(); + boolean avoidingGui(); /** * Tells the Bean not to use GUI methods. * If needsGUI() is false, then after this method is called, * avoidingGui() should return true. */ - public abstract void dontUseGui(); + void dontUseGui(); /** * Tells the Bean it may use the GUI. @@ -81,5 +81,5 @@ public interface Visibility { * false, avoidingGui() may return true or false after this method * is called. */ - public abstract void okToUseGui(); + void okToUseGui(); } |