From 661593f15f14aaf55d73c7979dab1e900ebae2af Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 15 Oct 2014 15:17:11 +0000
Subject: [PATCH] AutoRefactored comments/javadocs on OpenDJ SDK
---
opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/TableBuilder.java | 20 +++++++++++---------
1 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/TableBuilder.java b/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/TableBuilder.java
index 06692c7..44b8eae 100644
--- a/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/TableBuilder.java
+++ b/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/TableBuilder.java
@@ -39,29 +39,31 @@
*/
public final class TableBuilder {
- // The current column number in the current row where 0 represents
- // the left-most column in the table.
+ /**
+ * The current column number in the current row where 0 represents
+ * the left-most column in the table.
+ */
private int column = 0;
- // The current with of each column.
+ /** The current with of each column. */
private List<Integer> columnWidths = new ArrayList<Integer>();
- // The list of column headings.
+ /** The list of column headings. */
private List<LocalizableMessage> header = new ArrayList<LocalizableMessage>();
- // The current number of rows in the table.
+ /** The current number of rows in the table. */
private int height = 0;
- // The list of table rows.
+ /** The list of table rows. */
private List<List<String>> rows = new ArrayList<List<String>>();
- // The linked list of sort keys comparators.
+ /** The linked list of sort keys comparators. */
private List<Comparator<String>> sortComparators = new ArrayList<Comparator<String>>();
- // The linked list of sort keys.
+ /** The linked list of sort keys. */
private List<Integer> sortKeys = new ArrayList<Integer>();
- // The current number of columns in the table.
+ /** The current number of columns in the table. */
private int width = 0;
/**
--
Gitblit v1.10.0