--- old/src/java.corba/share/classes/com/sun/corba/se/spi/monitoring/StatisticMonitoredAttribute.java 2015-04-30 16:32:03.315461892 +0400 +++ new/src/java.corba/share/classes/com/sun/corba/se/spi/monitoring/StatisticMonitoredAttribute.java 2015-04-30 16:32:03.231461892 +0400 @@ -27,15 +27,11 @@ import java.util.*; /** - *

- * * @author Hemanth Puttaswamy - *

- *

+ * * StatisticsMonitoredAttribute is provided as a convenience to collect the * Statistics of any entity. The getValue() call will be delegated to the * StatisticsAccumulator set by the user. - *

*/ public class StatisticMonitoredAttribute extends MonitoredAttributeBase { @@ -55,32 +51,19 @@ /** - *

* Constructs the StaisticMonitoredAttribute, builds the required * MonitoredAttributeInfo with Long as the class type and is always * readonly attribute. - *

- *

* * @param name Of this attribute - *

- *

- * @return a StatisticMonitoredAttribute - *

- *

* @param desc should provide a good description on the kind of statistics * collected, a good example is "Connection Response Time Stats will Provide the * detailed stats based on the samples provided from every request completion * time" - *

- *

* @param s is the StatisticsAcumulator that user will use to accumulate the * samples and this Attribute Object will get the computed statistics values * from. - *

- *

* @param mutex using which clearState() and getValue() calls need to be locked. - *

*/ public StatisticMonitoredAttribute(String name, String desc, StatisticsAccumulator s, Object mutex)