org.refcodes.checkerboard.AbstractCheckerboardViewerEvent Maven / Gradle / Ivy
Show all versions of refcodes-checkerboard Show documentation
package org.refcodes.checkerboard;
/**
* The Class AbstractCheckerboardViewerEvent.
*
* @param the generic type
* @param the generic type
*/
public abstract class AbstractCheckerboardViewerEvent
, S> implements CheckerboardViewerEvent
{
// /////////////////////////////////////////////////////////////////////////
// STATICS:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// CONSTANTS:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// VARIABLES:
// /////////////////////////////////////////////////////////////////////////
private CheckerboardViewer
_source;
private CheckerboardViewerAction _action;
// /////////////////////////////////////////////////////////////////////////
// CONSTRUCTORS:
// /////////////////////////////////////////////////////////////////////////
/**
* Instantiates a new abstract checkerboard viewer event.
*
* @param aAction the action
* @param aSource The according source (origin).
*/
public AbstractCheckerboardViewerEvent( CheckerboardViewerAction aAction, CheckerboardViewer
aSource ) {
_source = aSource;
_action = aAction;
}
// /////////////////////////////////////////////////////////////////////////
// INJECTION:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// METHODS:
// /////////////////////////////////////////////////////////////////////////
/**
* {@inheritDoc}
*/
@Override
public CheckerboardViewerAction getAction() {
return _action;
}
/**
* {@inheritDoc}
*/
@Override
public CheckerboardViewer
getSource() {
return _source;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return "action := " + _action;
}
// /////////////////////////////////////////////////////////////////////////
// HOOKS:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// HELPER:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// INNER CLASSES:
// /////////////////////////////////////////////////////////////////////////
}