From e7cac727a9231ff3602e61a4ea678e0463eb0e39 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 09:41:42 +0000
Subject: [PATCH] Autorefactored javadocs

---
 opendj-server-legacy/src/main/java/org/opends/server/admin/InstantiableRelationDefinition.java |   38 +++++++++++++++++---------------------
 1 files changed, 17 insertions(+), 21 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/admin/InstantiableRelationDefinition.java b/opendj-server-legacy/src/main/java/org/opends/server/admin/InstantiableRelationDefinition.java
index 35523c7..dcecd91 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/admin/InstantiableRelationDefinition.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/admin/InstantiableRelationDefinition.java
@@ -70,14 +70,16 @@
       <C extends ConfigurationClient, S extends Configuration>
       extends AbstractBuilder<C, S, InstantiableRelationDefinition<C, S>> {
 
-    // The optional naming property definition.
+    /** The optional naming property definition. */
     private PropertyDefinition<?> namingPropertyDefinition;
 
-    // The plural name of the relation.
+    /** The plural name of the relation. */
     private final String pluralName;
 
-    // The optional default managed objects associated with this
-    // instantiable relation definition.
+    /**
+     * The optional default managed objects associated with this
+     * instantiable relation definition.
+     */
     private final Map<String, DefaultManagedObject<? extends C, ? extends S>>
       defaultManagedObjects = new HashMap<String,
         DefaultManagedObject<? extends C, ? extends S>>();
@@ -137,9 +139,7 @@
 
 
 
-    /**
-     * {@inheritDoc}
-     */
+    /** {@inheritDoc} */
     @Override
     protected InstantiableRelationDefinition<C, S> buildInstance(
         Common<C, S> common) {
@@ -149,20 +149,22 @@
 
   }
 
-  // The optional naming property definition.
+  /** The optional naming property definition. */
   private final PropertyDefinition<?> namingPropertyDefinition;
 
-  // The plural name of the relation.
+  /** The plural name of the relation. */
   private final String pluralName;
 
-  // The optional default managed objects associated with this
-  // instantiable relation definition.
+  /**
+   * The optional default managed objects associated with this
+   * instantiable relation definition.
+   */
   private final Map<String, DefaultManagedObject<? extends C, ? extends S>>
     defaultManagedObjects;
 
 
 
-  // Private constructor.
+  /** Private constructor. */
   private InstantiableRelationDefinition(Common<C, S> common,
       String pluralName,
       PropertyDefinition<?> namingPropertyDefinition,
@@ -176,9 +178,7 @@
 
 
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   @Override
   public <R, P> R accept(RelationDefinitionVisitor<R, P> v, P p) {
     return v.visitInstantiable(this, p);
@@ -277,9 +277,7 @@
 
 
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   @Override
   public void toString(StringBuilder builder) {
     builder.append("name=");
@@ -292,9 +290,7 @@
 
 
 
-  /**
-   * {@inheritDoc}
-   */
+  /** {@inheritDoc} */
   @Override
   protected void initialize() throws Exception {
     for (DefaultManagedObject<?, ?> dmo : defaultManagedObjects.values()) {

--
Gitblit v1.10.0