Package adams.doc.latex.generator
Interface EnvironmentWithNoTrailingSpace
-
- All Superinterfaces:
adams.core.AdditionalInformationHandler
,CodeGenerator
,adams.core.Destroyable
,adams.flow.core.FlowContextHandler
,adams.core.option.OptionHandler
,adams.core.QuickInfoSupporter
- All Known Implementing Classes:
AbstractEnvironmentWithNoTrailingSpace
,AbstractMetaCodeGeneratorWithNoTrailingSpace
,MiniPage
,Verbatim
public interface EnvironmentWithNoTrailingSpace extends CodeGenerator
Interface for code generators that can append a "%" to avoid a trailing space.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getSuppressTrailingSpace()
Returns whether to suppress the trailing space.void
setSuppressTrailingSpace(boolean value)
Sets whether to suppress the trailing space.String
suppressTrailingSpaceTipText()
Returns the tip text for this property.-
Methods inherited from interface adams.doc.latex.generator.CodeGenerator
generate, getAdditionalInformation, getFlowContext, getNoVariableExpansion, getQuickInfo, getRequiredPackages, getSkip, noVariableExpansionTipText, setFlowContext, setNoVariableExpansion, setSkip, skipTipText
-
-
-
-
Method Detail
-
setSuppressTrailingSpace
void setSuppressTrailingSpace(boolean value)
Sets whether to suppress the trailing space.- Parameters:
value
- true if to suppress
-
getSuppressTrailingSpace
boolean getSuppressTrailingSpace()
Returns whether to suppress the trailing space.- Returns:
- true if to suppress
-
suppressTrailingSpaceTipText
String suppressTrailingSpaceTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-