You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by co...@apache.org on 2003/02/03 22:42:33 UTC

cvs commit: jakarta-commons/modeler/src/java/org/apache/commons/modeler AttributeInfo.java

costin      2003/02/03 13:42:32

  Modified:    modeler/src/java/org/apache/commons/modeler
                        AttributeInfo.java
  Log:
  Some implementation of JMX require it to be false  (it is used for base mbean, not for
  model mbeans )
  
  Revision  Changes    Path
  1.5       +5 -5      jakarta-commons/modeler/src/java/org/apache/commons/modeler/AttributeInfo.java
  
  Index: AttributeInfo.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/modeler/src/java/org/apache/commons/modeler/AttributeInfo.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AttributeInfo.java	23 Jan 2003 19:42:03 -0000	1.4
  +++ AttributeInfo.java	3 Feb 2003 21:42:32 -0000	1.5
  @@ -255,7 +255,7 @@
           // Create and return a new information object
           info = new ModelMBeanAttributeInfo
               (getName(), getType(), getDescription(),
  -             isReadable(), isWriteable(), isIs());
  +             isReadable(), isWriteable(), false);
           Descriptor descriptor = info.getDescriptor();
           if (getDisplayName() != null)
               descriptor.setField("displayName", getDisplayName());
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org