All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.refcodes.checkerboard.GridModeChangedEventImpl Maven / Gradle / Ivy

Go to download

Artifact for providing some easy means to visualize (state of) board games or (state of) cellular automatons.

There is a newer version: 3.3.8
Show newest version
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: // ///////////////////////////////////////////////////////////////////////// }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy