jdk/src/jdk.jvmstat/share/classes/sun/jvmstat/perfdata/monitor/PerfLongMonitor.java
changeset 28059 e576535359cc
parent 25859 3317bb8137f4
equal deleted inserted replaced
28058:87940c838900 28059:e576535359cc
    60     /**
    60     /**
    61      * {@inheritDoc}
    61      * {@inheritDoc}
    62      * The object returned contains a Long object containing the
    62      * The object returned contains a Long object containing the
    63      * current value of the LongInstrument.
    63      * current value of the LongInstrument.
    64      *
    64      *
    65      * @return Object - the current value of the the LongInstrument. The
    65      * @return Object - the current value of the LongInstrument. The
    66      *                  return type is guaranteed to be of type Long.
    66      *                  return type is guaranteed to be of type Long.
    67      */
    67      */
    68     public Object getValue() {
    68     public Object getValue() {
    69         return Long.valueOf(lb.get(0));
    69         return Long.valueOf(lb.get(0));
    70     }
    70     }