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

org.refcodes.checkerboard.DraggabilityChangedEvent 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;

/**
 * The Class DraggabilityChangedEvent.
 *
 * @param 

the generic type */ public class DraggabilityChangedEvent

> extends AbstractPlayerEvent

implements PlayerEvent

{ // ///////////////////////////////////////////////////////////////////////// // STATICS: // ///////////////////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////////// // CONSTANTS: // ///////////////////////////////////////////////////////////////////////// public static final PlayerAction ACTION = PlayerAction.DRAGGABILITY_CHANGED; // ///////////////////////////////////////////////////////////////////////// // VARIABLES: // ///////////////////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////////// // CONSTRUCTORS: // ///////////////////////////////////////////////////////////////////////// /** * Instantiates a new draggability changed event. * * @param aSource The according source (origin). */ public DraggabilityChangedEvent( P aSource ) { super( ACTION, aSource ); } // ///////////////////////////////////////////////////////////////////////// // INJECTION: // ///////////////////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////////// // METHODS: // ///////////////////////////////////////////////////////////////////////// /** * {@inheritDoc} */ @Override public String toString() { return super.toString() + ", draggability := " + getSource().isDraggable() + " (state before: " + (!getSource().isDraggable()) + ")"; } // ///////////////////////////////////////////////////////////////////////// // HOOKS: // ///////////////////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////////// // HELPER: // ///////////////////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////////// // INNER CLASSES: // ///////////////////////////////////////////////////////////////////////// }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy