From 99aaa917a95d7ec19e14dad25f61f58ff84753b1 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 10:49:57 +0000
Subject: [PATCH] Autorefactored javadocs
---
opendj-server-legacy/src/main/java/org/opends/server/monitors/MemoryUsageMonitorProvider.java | 31 +++++++++++--------------------
1 files changed, 11 insertions(+), 20 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/monitors/MemoryUsageMonitorProvider.java b/opendj-server-legacy/src/main/java/org/opends/server/monitors/MemoryUsageMonitorProvider.java
index 8b47ec3..1c51616 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/monitors/MemoryUsageMonitorProvider.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/monitors/MemoryUsageMonitorProvider.java
@@ -42,7 +42,6 @@
import org.opends.server.core.DirectoryServer;
import org.opends.server.types.*;
-
/**
* This class defines a monitor provider that reports information about
* Directory Server memory usage.
@@ -51,26 +50,24 @@
extends MonitorProvider<MemoryUsageMonitorProviderCfg>
implements Runnable
{
- // A map of the last GC counts seen by this monitor for calculating recent
- // stats.
+ /** A map of the last GC counts seen by this monitor for calculating recent stats. */
private HashMap<String,Long> lastGCCounts = new HashMap<String,Long>();
- // A map of the last GC times seen by this monitor for calculating recent
- // stats.
+ /** A map of the last GC times seen by this monitor for calculating recent stats. */
private HashMap<String,Long> lastGCTimes = new HashMap<String,Long>();
- // A map of the most recent GC durations seen by this monitor.
+ /** A map of the most recent GC durations seen by this monitor. */
private HashMap<String,Long> recentGCDurations = new HashMap<String,Long>();
- // A map of the memory manager names to names that are safe for use in
- // attribute names.
+ /**
+ * A map of the memory manager names to names that are safe for use in
+ * attribute names.
+ */
private HashMap<String,String> gcSafeNames = new HashMap<String,String>();
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void initializeMonitorProvider(
MemoryUsageMonitorProviderCfg configuration)
throws ConfigException, InitializationException
@@ -78,9 +75,7 @@
scheduleUpdate(this, 0, 1, TimeUnit.SECONDS);
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public String getMonitorInstanceName()
{
@@ -88,9 +83,7 @@
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
public void run()
{
for (GarbageCollectorMXBean gc :
@@ -125,9 +118,7 @@
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public ArrayList<Attribute> getMonitorData()
{
--
Gitblit v1.10.0