--- old/src/java.corba/share/classes/com/sun/corba/se/spi/monitoring/MonitoredAttributeInfo.java 2015-04-30 20:13:23.311450979 +0400 +++ new/src/java.corba/share/classes/com/sun/corba/se/spi/monitoring/MonitoredAttributeInfo.java 2015-04-30 20:13:23.227450979 +0400 @@ -27,14 +27,10 @@ import java.util.*; /** - *

- * * @author Hemanth Puttaswamy - *

- *

+ * * Monitored AttributeInfo contains the meta information of the Monitored * Attribute. - *

*/ public interface MonitoredAttributeInfo { @@ -42,45 +38,38 @@ // operations /** - *

* If the Attribute is writable from ASAdmin then isWritable() will return * true. - *

- *

* * @return a boolean with true or false - *

*/ public boolean isWritable(); /** - *

* isStatistic() is true if the attribute is presented as a Statistic. - *

- *

* * @return a boolean with true or false - *

*/ public boolean isStatistic(); /** - *

- * Class Type: We will allow only basic class types: 1)Boolean 2)Integer - * 3)Byte 4)Long 5)Float 6)Double 7)String 8)Character - *

- *

+ * Class Type: We will allow only basic class types: + *

    + *
  1. Boolean
  2. + *
  3. Integer
  4. + *
  5. Byte
  6. + *
  7. Long
  8. + *
  9. Float
  10. + *
  11. Double
  12. + *
  13. String
  14. + *
  15. Character
  16. + *
* * @return a Class Type - *

*/ public Class type(); /** - *

* Get's the description for the Monitored Attribute. - *

- *

* * @return a String with description - *

*/ public String getDescription();