Package adams.core.io
Interface PrettyPrintingSupporter
-
- All Known Implementing Classes:
AbstractSimpleJsonReportWriter,DefaultSimpleJsonReportWriter,DOMToString,JsonFileWriter,JsonIndexedSplitsRunsWriter,JsonNotesWriter,JsonProcessor,JsonToString,OpexObjectLocationsWriter,ReportToJson,ViaAnnotationsReportWriter,XMLFileWriter
public interface PrettyPrintingSupporterInterface for classes that support pretty-printing.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetPrettyPrinting()Returns whether pretty-printing is used or not.StringprettyPrintingTipText()Returns the tip text for this property.voidsetPrettyPrinting(boolean value)Sets whether to use pretty-printing or not.
-
-
-
Method Detail
-
setPrettyPrinting
void setPrettyPrinting(boolean value)
Sets whether to use pretty-printing or not.- Parameters:
value- true if to use pretty-printing
-
getPrettyPrinting
boolean getPrettyPrinting()
Returns whether pretty-printing is used or not.- Returns:
- true if to use pretty-printing
-
prettyPrintingTipText
String prettyPrintingTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-