org.refcodes.checkerboard.PlayerAddedEventImpl Maven / Gradle / Ivy
Show all versions of refcodes-checkerboard Show documentation
package org.refcodes.checkerboard;
import org.refcodes.checkerboard.AbstractCheckerboardEvent.AbstractPlayerCheckerboardEvent;
/**
* The Class PlayerAddedEventImpl.
*
* @param the generic type
* @param the generic type
*/
public class PlayerAddedEventImpl
, S> extends AbstractPlayerCheckerboardEvent
implements PlayerAddedEvent
{
// /////////////////////////////////////////////////////////////////////////
// STATICS:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// CONSTANTS:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// VARIABLES:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// CONSTRUCTORS:
// /////////////////////////////////////////////////////////////////////////
/**
* Instantiates a new player added event.
*
* @param aPlayer the player
* @param aSource The according source (origin).
*/
public PlayerAddedEventImpl( P aPlayer, Checkerboard
aSource ) {
super( ACTION, aPlayer, aSource );
}
// /////////////////////////////////////////////////////////////////////////
// INJECTION:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// METHODS:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// HOOKS:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// HELPER:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// INNER CLASSES:
// /////////////////////////////////////////////////////////////////////////
}