You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2008/01/29 12:07:55 UTC

svn commit: r616255 - /harmony/enhanced/classlib/trunk/modules/beans/src/main/java/java/beans/Beans.java

Author: tellison
Date: Tue Jan 29 03:07:53 2008
New Revision: 616255

URL: http://svn.apache.org/viewvc?rev=616255&view=rev
Log:
Simple Javadoc fixes.

Modified:
    harmony/enhanced/classlib/trunk/modules/beans/src/main/java/java/beans/Beans.java

Modified: harmony/enhanced/classlib/trunk/modules/beans/src/main/java/java/beans/Beans.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/beans/src/main/java/java/beans/Beans.java?rev=616255&r1=616254&r2=616255&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/beans/src/main/java/java/beans/Beans.java (original)
+++ harmony/enhanced/classlib/trunk/modules/beans/src/main/java/java/beans/Beans.java Tue Jan 29 03:07:53 2008
@@ -84,11 +84,11 @@
      * If the specified class loader is null, the system class loader is used.
      * </p>
      * 
-     * @param loader
+     * @param cls
      *            the specified class loader. It can be null.
-     * @param name
+     * @param beanName
      *            the name of the JavaBean
-     * @param context
+     * @param beanContext
      *            the beancontext in which the bean instance will be added.
      * @return an instance of the specified JavaBean.
      * @throws IOException
@@ -139,9 +139,9 @@
      * called.)
      * </p>
      * 
-     * @param loader
+     * @param cls
      *            the specified class loader. It can be null.
-     * @param name
+     * @param beanName
      *            the name of the JavaBean
      * @param context
      *            the beancontext in which the bean instance will be added.
@@ -219,12 +219,12 @@
      * 
      * @param bean
      *            the original bean object.
-     * @param type
+     * @param targetType
      *            the specified view type.
      * @return a type view of the given bean.
      */
-    public static Object getInstanceOf(Object bean, @SuppressWarnings("unused")
-    Class<?> targetType) {
+    @SuppressWarnings("unused")
+    public static Object getInstanceOf(Object bean, Class<?> targetType) {
         return bean;
     }
 
@@ -234,7 +234,7 @@
      * 
      * @param bean
      *            the specified bean object.
-     * @param type
+     * @param targetType
      *            the specifed view type.
      * @return true if the specified bean object can be viewed as the specified
      *         type; otherwise, return false;
@@ -250,7 +250,7 @@
     /**
      * Set whether or not a GUI is available in the bean's current environment.
      * 
-     * @param value
+     * @param isGuiAvailable
      *            should be <code>true</code> to signify that a GUI is
      *            available, <code>false</code> otherwise.
      * @throws SecurityException
@@ -267,7 +267,7 @@
      * Used to indicate whether of not it's in an application construction
      * environment.
      * 
-     * @param value
+     * @param isDesignTime
      *            true to indicate that it's in application construction
      *            environment.
      * @throws SecurityException