org.refcodes.checkerboard.GridModeChangedEventImpl Maven / Gradle / Ivy
Show all versions of refcodes-checkerboard Show documentation
package org.refcodes.checkerboard;
import org.refcodes.graphical.GridMode;
/**
* The Class GridModeChangedEventImpl.
*
* @param the generic type
* @param the generic type
*/
public class GridModeChangedEventImpl
, S> extends AbstractCheckerboardEvent
implements GridModeChangedEvent
{
private GridMode _gridMode;
private GridMode _precedingGridMode;
// /////////////////////////////////////////////////////////////////////////
// STATICS:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// CONSTANTS:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// VARIABLES:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// CONSTRUCTORS:
// /////////////////////////////////////////////////////////////////////////
/**
* Instantiates a new grid mode changed event.
*
* @param aGridMode the grid mode
* @param aPrecedingGridMode the preceding grid mode
* @param aSource The according source (origin).
*/
public GridModeChangedEventImpl( GridMode aGridMode, GridMode aPrecedingGridMode, Checkerboard
aSource ) {
super( ACTION, aSource );
_gridMode = aGridMode;
_precedingGridMode = aPrecedingGridMode;
}
// /////////////////////////////////////////////////////////////////////////
// INJECTION:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// METHODS:
// /////////////////////////////////////////////////////////////////////////
/**
* {@inheritDoc}
*/
@Override
public GridMode getGridMode() {
return _gridMode;
}
/**
* {@inheritDoc}
*/
@Override
public GridMode getPrecedingGridMode() {
return _precedingGridMode;
}
// /////////////////////////////////////////////////////////////////////////
// HOOKS:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// HELPER:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// INNER CLASSES:
// /////////////////////////////////////////////////////////////////////////
}