Package adams.doc.latex.generator
Class MultiCol
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.doc.latex.generator.AbstractCodeGenerator
-
- adams.doc.latex.generator.AbstractMetaCodeGenerator
-
- adams.doc.latex.generator.MultiCol
-
- All Implemented Interfaces:
adams.core.AdditionalInformationHandler
,adams.core.Destroyable
,adams.core.GlobalInfoSupporter
,adams.core.logging.LoggingLevelHandler
,adams.core.logging.LoggingSupporter
,adams.core.option.OptionHandler
,adams.core.QuickInfoSupporter
,adams.core.SizeOfHandler
,CodeGenerator
,adams.flow.core.FlowContextHandler
,Serializable
public class MultiCol extends AbstractMetaCodeGenerator
Inserts a 'multicol' environment, providing multiple columns and an optional preface across the columns.
-logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel) The logging level for outputting errors and debugging output. default: WARNING
-skip <boolean> (property: skip) If enabled, the code generation gets skipped. default: false
-no-var-expansion <boolean> (property: noVariableExpansion) If enabled, variable expansion gets skipped. default: false
-generator <adams.doc.latex.generator.CodeGenerator> (property: generator) Generates the code for the columns. default: adams.doc.latex.generator.CustomStatements
-preface <adams.doc.latex.generator.CodeGenerator> (property: preface) The optional code generator for the preface; use adams.doc.latex.generator.Dummy to skip. default: adams.doc.latex.generator.Dummy
-num-columns <int> (property: numColumns) The number of columns to use. default: 2 minimum: 1
- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected int
m_NumColumns
the number of columns.protected CodeGenerator
m_Preface
optional preface code generator.-
Fields inherited from class adams.doc.latex.generator.AbstractMetaCodeGenerator
m_Generator
-
Fields inherited from class adams.doc.latex.generator.AbstractCodeGenerator
m_FlowContext, m_NoVariableExpansion, m_Skip
-
-
Constructor Summary
Constructors Constructor Description MultiCol()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
defineOptions()
Adds options to the internal list of options.protected String
doGenerate()
Generates the actual code.String
generatorTipText()
Returns the tip text for this property.protected CodeGenerator
getDefaultGenerator()
Returns the default code generator to use.int
getNumColumns()
Returns the number of columns to use.CodeGenerator
getPreface()
Returns the preface code generator.String
getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.String[]
getRequiredPackages()
Returns the list of required LaTeX packages for this code generator.String
globalInfo()
Returns a string describing the object.String
numColumnsTipText()
Returns the tip text for this property.String
prefaceTipText()
Returns the tip text for this property.void
setNumColumns(int value)
Sets the number of columns to use.void
setPreface(CodeGenerator value)
Sets the optional preface code generator.-
Methods inherited from class adams.doc.latex.generator.AbstractMetaCodeGenerator
getGenerator, setFlowContext, setGenerator
-
Methods inherited from class adams.doc.latex.generator.AbstractCodeGenerator
check, ensureTrailingNewLine, ensureTrailingNewLine, escape, expand, expandEscape, generate, getAdditionalInformation, getFlowContext, getNoVariableExpansion, getSkip, noVariableExpansionTipText, setNoVariableExpansion, setSkip, skipTipText
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, initialize, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Field Detail
-
m_Preface
protected CodeGenerator m_Preface
optional preface code generator.
-
m_NumColumns
protected int m_NumColumns
the number of columns.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfo
in interfaceadams.core.GlobalInfoSupporter
- Specified by:
globalInfo
in classadams.core.option.AbstractOptionHandler
- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptions
in interfaceadams.core.option.OptionHandler
- Overrides:
defineOptions
in classAbstractMetaCodeGenerator
-
getDefaultGenerator
protected CodeGenerator getDefaultGenerator()
Returns the default code generator to use.- Specified by:
getDefaultGenerator
in classAbstractMetaCodeGenerator
- Returns:
- the default
-
generatorTipText
public String generatorTipText()
Returns the tip text for this property.- Specified by:
generatorTipText
in classAbstractMetaCodeGenerator
- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setPreface
public void setPreface(CodeGenerator value)
Sets the optional preface code generator.- Parameters:
value
- the preface
-
getPreface
public CodeGenerator getPreface()
Returns the preface code generator.- Returns:
- the preface
-
prefaceTipText
public String prefaceTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setNumColumns
public void setNumColumns(int value)
Sets the number of columns to use.- Parameters:
value
- the columns
-
getNumColumns
public int getNumColumns()
Returns the number of columns to use.- Returns:
- the columns
-
numColumnsTipText
public String numColumnsTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
getRequiredPackages
public String[] getRequiredPackages()
Returns the list of required LaTeX packages for this code generator.- Specified by:
getRequiredPackages
in interfaceCodeGenerator
- Specified by:
getRequiredPackages
in classAbstractCodeGenerator
- Returns:
- the packages
-
getQuickInfo
public String getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.- Specified by:
getQuickInfo
in interfaceCodeGenerator
- Specified by:
getQuickInfo
in interfaceadams.core.QuickInfoSupporter
- Overrides:
getQuickInfo
in classAbstractMetaCodeGenerator
- Returns:
- null if no info available, otherwise short string
-
doGenerate
protected String doGenerate()
Generates the actual code.- Specified by:
doGenerate
in classAbstractCodeGenerator
- Returns:
- the generated code
-
-