/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at
* trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
* add the following below this CDDL HEADER, with the fields enclosed
* by brackets "[]" replaced with your own identifying information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2008 Sun Microsystems, Inc.
*/
/**
* An interface for creating a tab-separated formatted table.
* <p>
* This table printer will replace any tab, line-feeds, or carriage
* return control characters encountered in a cell with a single
* space.
*/
/**
* Table serializer implementation.
*/
// The current column being output.
// Counts the number of separators that should be output the next
// time a non-empty cell is displayed. The tab separators are
// not displayed immediately so that we can avoid displaying
// unnecessary trailing separators.
// Private constructor.
private Serializer() {
// No implementation required.
}
/**
* {@inheritDoc}
*/
// Avoid printing tab separators for trailing empty cells.
if (s.length() == 0) {
} else {
for (int i = 0; i < requiredSeparators; i++) {
}
requiredSeparators = 1;
}
// Replace all new-lines and tabs with a single space.
column++;
}
/**
* {@inheritDoc}
*/
if (displayHeadings) {
addCell(s);
}
}
/**
* {@inheritDoc}
*/
public void endHeader() {
if (displayHeadings) {
}
}
/**
* {@inheritDoc}
*/
public void endRow() {
}
/**
* {@inheritDoc}
*/
public void endTable() {
}
/**
* {@inheritDoc}
*/
public void startHeader() {
column = 0;
requiredSeparators = 0;
}
/**
* {@inheritDoc}
*/
public void startRow() {
column = 0;
requiredSeparators = 0;
}
}
// Indicates whether or not the headings should be output.
private boolean displayHeadings = false;
// The output destination.
/**
* Creates a new tab separated table printer for the specified
* output stream. Headings will not be displayed by default.
*
* @param stream
* The stream to output tables to.
*/
}
/**
* Creates a new tab separated table printer for the specified
* writer. Headings will not be displayed by default.
*
* @param writer
* The writer to output tables to.
*/
}
/**
* Specify whether or not table headings should be displayed.
*
* @param displayHeadings
* <code>true</code> if table headings should be
* displayed.
*/
this.displayHeadings = displayHeadings;
}
/**
* {@inheritDoc}
*/
return new Serializer();
}
}