summaryrefslogtreecommitdiff
path: root/libjava/java/beans/Visibility.java
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-11 18:18:22 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-11 18:18:22 +0000
commit3285453900cf4bc90cc46713f3e9aa15973dc890 (patch)
tree29eafa45dfaf7f06db6f2a2aadc5f0011b5e0ef0 /libjava/java/beans/Visibility.java
parent2b4d7e1bf1dd9bb72da05cd227c528ecfe14afee (diff)
downloadgcc-3285453900cf4bc90cc46713f3e9aa15973dc890.tar.gz
2003-10-11 Michael Koch <konqueror@gmx.de>
* java/beans/AppletInitializer.java, java/beans/BeanInfo.java, java/beans/Customizer.java, java/beans/DesignMode.java, java/beans/PropertyEditor.java, java/beans/Visibility.java: Removed redundant modifiers. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72349 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/beans/Visibility.java')
-rw-r--r--libjava/java/beans/Visibility.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/beans/Visibility.java b/libjava/java/beans/Visibility.java
index f474f4c5e03..82c0fa17a9f 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();
}