User: juhalindfors
  Date: 02/03/08 07:36:27

  Modified:    src/main/javax/management/modelmbean
                        ModelMBeanOperationInfo.java
  Log:
  implements cloneable
  
  Revision  Changes    Path
  1.4       +8 -3      
jmx/src/main/javax/management/modelmbean/ModelMBeanOperationInfo.java
  
  Index: ModelMBeanOperationInfo.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jmx/src/main/javax/management/modelmbean/ModelMBeanOperationInfo.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ModelMBeanOperationInfo.java      21 Feb 2002 06:38:37 -0000      1.3
  +++ ModelMBeanOperationInfo.java      8 Mar 2002 15:36:27 -0000       1.4
  @@ -22,11 +22,11 @@
    * @see javax.management.modelmbean.ModelMBeanInfoSupport
    *
    * @author  <a href="mailto:[EMAIL PROTECTED]";>Juha Lindfors</a>.
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    */
   public class ModelMBeanOperationInfo
      extends MBeanOperationInfo
  -   implements DescriptorAccess
  +   implements DescriptorAccess, Cloneable
   {
      
      // Attributes ----------------------------------------------------
  @@ -153,7 +153,12 @@
      }
   
      // Cloneable implementation --------------------------------------
  -
  +   /**
  +    * Creates a copy of this object.
  +    *
  +    * @return clone of this object
  +    * @throws CloneNotSupportedException if there was a failure creating the copy
  +    */
      public synchronized Object clone() throws CloneNotSupportedException
      {
         ModelMBeanOperationInfo clone = (ModelMBeanOperationInfo)super.clone();
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to