summaryrefslogtreecommitdiff
path: root/libjava/java/beans/beancontext/BeanContextChild.java
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-11 18:19:44 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-11 18:19:44 +0000
commitad8e2d75aa3d932c40cd900bb14c5bf4d8db3537 (patch)
tree878baaf326247f4ad482134ee35435cfbf2ab28e /libjava/java/beans/beancontext/BeanContextChild.java
parent3285453900cf4bc90cc46713f3e9aa15973dc890 (diff)
downloadgcc-ad8e2d75aa3d932c40cd900bb14c5bf4d8db3537.tar.gz
2003-10-11 Michael Koch <konqueror@gmx.de>
* java/beans/beancontext/BeanContext.java, java/beans/beancontext/BeanContextChild.java, java/beans/beancontext/BeanContextChildComponentProxy.java, java/beans/beancontext/BeanContextChildSupport.java, java/beans/beancontext/BeanContextContainerProxy.java, java/beans/beancontext/BeanContextMembershipListener.java, java/beans/beancontext/BeanContextProxy.java, java/beans/beancontext/BeanContextServiceProvider.java, java/beans/beancontext/BeanContextServiceProviderBeanInfo.java, java/beans/beancontext/BeanContextServiceRevokedListener.java, java/beans/beancontext/BeanContextServices.java, java/beans/beancontext/BeanContextServicesListener.java: Removed redundant modifiers. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72350 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/beans/beancontext/BeanContextChild.java')
-rw-r--r--libjava/java/beans/beancontext/BeanContextChild.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/libjava/java/beans/beancontext/BeanContextChild.java b/libjava/java/beans/beancontext/BeanContextChild.java
index ef2b7b34976..4421273e8fd 100644
--- a/libjava/java/beans/beancontext/BeanContextChild.java
+++ b/libjava/java/beans/beancontext/BeanContextChild.java
@@ -132,28 +132,28 @@ public interface BeanContextChild {
* <code>BeanContextChild</code> implementor does not
* wish to have its parent changed.
*/
- public void setBeanContext(BeanContext parent)
+ void setBeanContext(BeanContext parent)
throws PropertyVetoException;
/**
* Get the parent <code>BeanContext</code>.
* @return the parent <code>BeanContext</code>.
*/
- public BeanContext getBeanContext();
+ BeanContext getBeanContext();
/**
* Add a listener that will be notified when a specific property changes.
* @param prop the name of the property to listen on
* @param listener the listener to listen on the property.
*/
- public void addPropertyChangeListener(String prop, PropertyChangeListener listener);
+ void addPropertyChangeListener(String prop, PropertyChangeListener listener);
/**
* Remove a listener to a certain property.
* @param prop the name of the property being listened on
* @param listener the listener listening on the property.
*/
- public void removePropertyChangeListener(String prop, PropertyChangeListener listener);
+ void removePropertyChangeListener(String prop, PropertyChangeListener listener);
/**
* Add a listener that will be notified when a specific property
@@ -163,12 +163,12 @@ public interface BeanContextChild {
* @param prop the name of the property to listen on
* @param listener the listener to listen on the property.
*/
- public void addVetoableChangeListener(String prop, VetoableChangeListener listener);
+ void addVetoableChangeListener(String prop, VetoableChangeListener listener);
/**
* Remove a listener to a certain property.
* @param prop the name of the property being listened on
* @param listener the listener listening on the property.
*/
- public void removeVetoableChangeListener(String prop, VetoableChangeListener listener);
+ void removeVetoableChangeListener(String prop, VetoableChangeListener listener);
}