Class AbstractInteractioner
- java.lang.Object
-
- org.pepstock.charba.client.interaction.AbstractInteractioner
-
- All Implemented Interfaces:
Interactioner
public abstract class AbstractInteractioner extends Object implements Interactioner
Abstract class which implements a interactioner.
It helps to create a custom interactioner, creating a custom interaction mode using the name as string passed as argument.- Author:
- Andrea "Stock" Stocchero
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractInteractioner(String name)Creates the interactioner passing the name of interaction mode as argument, as string.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IsInteractionModegetMode()Returns the name of interaction mode which must be used in chart options.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.pepstock.charba.client.interaction.Interactioner
invoke
-
-
-
-
Constructor Detail
-
AbstractInteractioner
protected AbstractInteractioner(String name)
Creates the interactioner passing the name of interaction mode as argument, as string.- Parameters:
name- of interaction mode.
-
-
Method Detail
-
getMode
public final IsInteractionMode getMode()
Description copied from interface:InteractionerReturns the name of interaction mode which must be used in chart options.- Specified by:
getModein interfaceInteractioner- Returns:
- the name of interaction mode
-
-