AppletInitializer.java, [...]: Removed redundant modifiers.

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.

From-SVN: r72349
This commit is contained in:
Michael Koch 2003-10-11 18:18:22 +00:00 committed by Michael Koch
parent e1a5ed6c63
commit 928366f04f
7 changed files with 46 additions and 36 deletions

View file

@ -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();
}