Interface TickGenerator
-
- All Superinterfaces:
Destroyable,OptionHandler,ShallowCopySupporter<TickGenerator>
- All Known Subinterfaces:
FixedLabelTickGenerator
- All Known Implementing Classes:
AbstractLimitedTickGenerator,AbstractTickGenerator,FancyTickGenerator,PeriodicityTickGenerator,SimpleFixedLabelTickGenerator,SimpleTickGenerator
public interface TickGenerator extends OptionHandler, ShallowCopySupporter<TickGenerator>
Interface for tick generators.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AbstractAxisModelgetParent()Returns the owning axis model.List<Tick>getTicks()Returns the ticks of this axis.voidsetParent(AbstractAxisModel value)Sets the owning axis model.-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
Methods inherited from interface adams.core.ShallowCopySupporter
shallowCopy, shallowCopy
-
-
-
-
Method Detail
-
setParent
void setParent(AbstractAxisModel value)
Sets the owning axis model.- Parameters:
value- the model
-
getParent
AbstractAxisModel getParent()
Returns the owning axis model.- Returns:
- the model
-
-