BeanContext.java, [...]: Removed redundant modifiers.
authorMichael Koch <konqueror@gmx.de>
Sat, 11 Oct 2003 18:19:44 +0000 (18:19 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Sat, 11 Oct 2003 18:19:44 +0000 (18:19 +0000)
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.

From-SVN: r72350

13 files changed:
libjava/ChangeLog
libjava/java/beans/beancontext/BeanContext.java
libjava/java/beans/beancontext/BeanContextChild.java
libjava/java/beans/beancontext/BeanContextChildComponentProxy.java
libjava/java/beans/beancontext/BeanContextChildSupport.java
libjava/java/beans/beancontext/BeanContextContainerProxy.java
libjava/java/beans/beancontext/BeanContextMembershipListener.java
libjava/java/beans/beancontext/BeanContextProxy.java
libjava/java/beans/beancontext/BeanContextServiceProvider.java
libjava/java/beans/beancontext/BeanContextServiceProviderBeanInfo.java
libjava/java/beans/beancontext/BeanContextServiceRevokedListener.java
libjava/java/beans/beancontext/BeanContextServices.java
libjava/java/beans/beancontext/BeanContextServicesListener.java

index 3be2c9cef9c417fdfe20b6f78bd8704dfb9b792b..a3b69e2d8a9b1139a1355ed05f16f91325e1fcf4 100644 (file)
@@ -1,3 +1,19 @@
+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.
+
 2003-10-11  Michael Koch  <konqueror@gmx.de>
 
        * java/beans/AppletInitializer.java,
index be71eb470b040ecb2e38d36860a685eaf479f86a..c996013e76083e8fafb8aa49c5cfa7fe465e2879 100644 (file)
@@ -183,7 +183,7 @@ public interface BeanContext
         * </UL>
         * @fixme fill in the rest of the methods which use the global lock.
         */
-       public static final Object globalHierarchyLock = new Object();
+       Object globalHierarchyLock = new Object();
 
        /** 
         * Instantiate a Bean using this Bean's <code>ClassLoader</code>
@@ -204,7 +204,7 @@ public interface BeanContext
         * @exception ClassNotFoundException if a serialized Bean's class
         *            is not found.
         */
-       public Object instantiateChild(String beanName)
+       Object instantiateChild(String beanName)
                         throws IOException,
                                ClassNotFoundException;
 
@@ -230,7 +230,7 @@ public interface BeanContext
         * @param requestor a reference to the child requesting the resource.
         * @see java.lang.ClassLoader#getResource(java.lang.String)
         */
-       public URL getResource(String resourceName, BeanContextChild requestor);
+       URL getResource(String resourceName, BeanContextChild requestor);
 
        /**
         * Get a resource as a stream.  The <code>BeanContext</code> will
@@ -254,19 +254,19 @@ public interface BeanContext
         * @param requestor a reference to the child requesting the resource.
         * @see java.lang.ClassLoader#getResourceAsStream(java.lang.String)
         */
-       public InputStream getResourceAsStream(String resourceName, BeanContextChild requestor);
+       InputStream getResourceAsStream(String resourceName, BeanContextChild requestor);
 
        /**
         * Add a listener on changes to the membership of this
         * <code>BeanContext</code> object.
         * @param listener the listener to add.
         */
-       public void addBeanContextMembershipListener(BeanContextMembershipListener listener);
+       void addBeanContextMembershipListener(BeanContextMembershipListener listener);
 
        /**
         * Remove a listener on changes to the membership of this
         * <code>BeanContext</code> object.
         * @param listener the listener to remove.
         */
-       public void removeBeanContextMembershipListener(BeanContextMembershipListener listener);
+       void removeBeanContextMembershipListener(BeanContextMembershipListener listener);
 }
index ef2b7b3497698d6e3c528f887a99dc34ce8363e6..4421273e8fd88628b687f3778c2ccec1cde7a705 100644 (file)
@@ -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);
 }
index b68ab13a0a7768a8978a59189d023c644a4bc79b..27c8bac8f943811d12e7d528b1906022de838ae7 100644 (file)
@@ -56,5 +56,5 @@ public interface BeanContextChildComponentProxy {
         * @return the <code>Component</code> associated with this
         * <code>BeanContextChild</code>.
         */
-       public Component getComponent();
+       Component getComponent();
 }
index ea48cf2ae502409a80cfb63a3b8706d42f89a08c..8cc17508e9e65ba68f3b43ec5192cd990229507d 100644 (file)
@@ -105,7 +105,7 @@ public class BeanContextChildSupport
        public BeanContextChildSupport()
   {
                this (null);
-       };
+       }
 
        /**
         * Create a new <code>BeanContextChildSupport</code> with the specified peer.
index db8291f8f1a7ac330abbf68b236df4b263c2a418..b582e688f88c4359df5334294b118a3a8daa1590 100644 (file)
@@ -59,5 +59,5 @@ public interface BeanContextContainerProxy {
         * @return the <code>Container</code> associated with this
         * <code>BeanContext</code>.
         */
-       public Container getContainer();
+       Container getContainer();
 }
index 06615de44b7826b640aa733ba32dc6e9f9b2f7c1..39b1e077598a887ab0efdd46cc566dff0e4202c7 100644 (file)
@@ -57,7 +57,7 @@ public interface BeanContextMembershipListener extends EventListener {
         * @param event the event, including which children were added.
         * @see java.beans.beancontext.BeanContext#add(java.lang.Object)
         */
-       public void childrenAdded(BeanContextMembershipEvent event);
+       void childrenAdded(BeanContextMembershipEvent event);
 
        /**
         * When beans are removed from a <code>BeanContext</code>,
@@ -66,5 +66,5 @@ public interface BeanContextMembershipListener extends EventListener {
         * @param event the event, including which children were removed.
         * @see java.beans.beancontext.BeanContext#remove(java.lang.Object)
         */
-       public void childrenRemoved(BeanContextMembershipEvent event);
+       void childrenRemoved(BeanContextMembershipEvent event);
 }
index 4771f8011640c74013d9f13cbaa176c5ca701c8d..78061f51cc75be82bd4f566d6c71a816759b6022 100644 (file)
@@ -61,5 +61,5 @@ public interface BeanContextProxy {
         * @return the <code>BeanContextChild</code> associated with this
         * <code>Object</code>.
         */
-       public BeanContextChild getBeanContextProxy();
+       BeanContextChild getBeanContextProxy();
 }
index ef2c944c6c150f6af4ae7e25f3fe15f894ee15b8..de9c7de8f6ede2109d2d2c5d97221fc1de125e55 100644 (file)
@@ -89,7 +89,7 @@ public interface BeanContextServiceProvider {
         *        <code>null</code>.
         * @see java.beans.beancontext.BeanContextServices#getService(java.beans.beancontext.BeanContextChild,java.lang.Object,java.lang.Class,java.lang.Object,java.beans.beancontext.BeanContextServiceRevokedListener)
         */
-       public Object getService(BeanContextServices services, Object requestor, Class serviceClass, Object serviceSelector);
+       Object getService(BeanContextServices services, Object requestor, Class serviceClass, Object serviceSelector);
 
        /**
         * Release the service.
@@ -109,7 +109,7 @@ public interface BeanContextServiceProvider {
         * @param service the service to relinquish
         * @see java.beans.beancontext.BeanContextServices#releaseService(java.beans.beancontext.BeanContextChild,java.lang.Object,java.lang.Object)
         */
-       public void releaseService(BeanContextServices services, Object requestor, Object service);
+       void releaseService(BeanContextServices services, Object requestor, Object service);
 
        /**
         * Get a list of valid service selectors for the specified service class.
@@ -136,5 +136,5 @@ public interface BeanContextServiceProvider {
         *         class, or <code>null</code>.
         * @see java.beans.beancontext.BeanContextServices#getCurrentServiceSelectors(java.lang.Class)
         */
-       public Iterator getCurrentServiceSelectors(BeanContextServices services, Class serviceClass);
+       Iterator getCurrentServiceSelectors(BeanContextServices services, Class serviceClass);
 }
index 50b6bacd8258a3414c2fcd2d1089ed81cf43dc11..2c5a2c434250e051988bf366fbc34d1c5a498db6 100644 (file)
@@ -56,5 +56,5 @@ public interface BeanContextServiceProviderBeanInfo extends BeanInfo {
         * Get <code>BeanInfo</code>s for all of the service classes of this <code>BeanInfoServiceProvider</code>.
         * @return <code>BeanInfo</code>s for all provided service classes.
         */
-       public BeanInfo[] getServicesBeanInfo();
+       BeanInfo[] getServicesBeanInfo();
 }
index 166a1e1974edceee067fb558f1643df5c20e0b9b..c3fcb3e4b6cf3cdcdb9b485eb2ef1bf15f5ea36d 100644 (file)
@@ -58,5 +58,5 @@ public interface BeanContextServiceRevokedListener extends EventListener {
         * @param event the service revoked event.
         * @see java.beans.beancontext.BeanContextServices#revokeService(java.lang.Class,java.beans.beancontext.BeanContextServiceProvider,boolean)
         */
-       public void serviceRevoked(BeanContextServiceRevokedEvent event);
+       void serviceRevoked(BeanContextServiceRevokedEvent event);
 }
index 89906aa977d5496b599249ed28d34f762a0401bf..6e76b0075136f0914ba0341a9f97b20965b4074c 100644 (file)
@@ -63,7 +63,7 @@ public interface BeanContextServices
    * @param provider the factory that will actually provide the service.
    * @return whether the service was added or not.
    */
-  public boolean addService (Class serviceClass,
+  boolean addService (Class serviceClass,
                              BeanContextServiceProvider provider);
 
   /**
@@ -83,7 +83,7 @@ public interface BeanContextServices
    * @param revokeNow whether to release all current references to
    *        the service.
    */
-  public void revokeService (Class serviceClass,
+  void revokeService (Class serviceClass,
                              BeanContextServiceProvider provider,
                              boolean revokeNow);
 
@@ -102,7 +102,7 @@ public interface BeanContextServices
    * @param service the service to relinquish
    * @see #getService(java.beans.beancontext.BeanContextChild,java.lang.Object,java.lang.Class,java.lang.Object,java.beans.beancontext.BeanContextServiceRevokedListener)
    */
-  public void releaseService (BeanContextChild requestorChild, Object requestor,
+  void releaseService (BeanContextChild requestorChild, Object requestor,
                               Object service);
 
   /**
@@ -152,7 +152,7 @@ public interface BeanContextServices
    *        <code>instanceof</code> serviceClass is true), or
    *        <code>null</code>.
    */
-  public Object getService (BeanContextChild requestorChild, Object requestor,
+  Object getService (BeanContextChild requestorChild, Object requestor,
                             Class serviceClass, Object serviceSelector,
                             BeanContextServiceRevokedListener listener)
     throws TooManyListenersException;
@@ -167,7 +167,7 @@ public interface BeanContextServices
    * @return a list of all service classes supported.
    * @see java.beans.beancontext.BeanContext#globalHierarchyLock
    */
-  public Iterator getCurrentServiceClasses ();
+  Iterator getCurrentServiceClasses ();
 
   /**
    * Get a list of valid service selectors for the specified service class.
@@ -187,7 +187,7 @@ public interface BeanContextServices
    * @return a list of valid service selectors for the service
    *         class, or <code>null</code>.
    */
-  public Iterator getCurrentServiceSelectors (Class serviceClass);
+  Iterator getCurrentServiceSelectors (Class serviceClass);
 
   /**
    * Tell whether the specified service class is available.
@@ -197,14 +197,13 @@ public interface BeanContextServices
    * @param serviceClass the service class to check on.
    * @return whether the specified service class is available.
    */
-  public boolean hasService (Class serviceClass);
+  boolean hasService (Class serviceClass);
 
   /**
    * Add a listener on all adds and removes of services.
    * @param listener the listener to add.
    */
-  public void
-  addBeanContextServicesListener (BeanContextServicesListener listener);
+  void addBeanContextServicesListener (BeanContextServicesListener listener);
 
   /**
    * Remove a listener on all adds and removes of services.
@@ -213,6 +212,5 @@ public interface BeanContextServices
    *           <code>getService()</code>.
    * @param listener the listener to add.
    */
-  public void
-  removeBeanContextServicesListener (BeanContextServicesListener listener);
+  void removeBeanContextServicesListener (BeanContextServicesListener listener);
 }
index f27489382f43b75622a6119833351751bf8a4596..5fd27f78ce486a5d965b442efe68a5868b55b9dc 100644 (file)
@@ -52,5 +52,5 @@ public interface BeanContextServicesListener extends BeanContextServiceRevokedLi
         * @param event the service revoked event, with useful information
         *        about the new service.
         */
-       public void serviceAvailable(BeanContextServiceAvailableEvent event);
+       void serviceAvailable(BeanContextServiceAvailableEvent event);
 }