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

org.refcodes.checkerboard.ViewportOffsetChangedEventImpl 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.ViewportOffset;
import org.refcodes.graphical.ViewportOffsetImpl;

/**
 * The Class ViewportOffsetChangedEventImpl.
 *
 * @param 

the generic type * @param the generic type */ public class ViewportOffsetChangedEventImpl

, S> extends AbstractCheckerboardViewerEvent implements ViewportOffsetChangedEvent { private int _offsetX; private int _offsetY; private ViewportOffset _precedingOffset; // ///////////////////////////////////////////////////////////////////////// // STATICS: // ///////////////////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////////// // CONSTANTS: // ///////////////////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////////// // VARIABLES: // ///////////////////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////////// // CONSTRUCTORS: // ///////////////////////////////////////////////////////////////////////// /** * Instantiates a new viewport offset changed event. * * @param aOffsetY the offset Y * @param aOffsetX the offset X * @param aPrecedingOffsetX the preceding offset X * @param aPrecedingOffsetY the preceding offset Y * @param aSource The according source (origin). */ public ViewportOffsetChangedEventImpl( int aOffsetY, int aOffsetX, int aPrecedingOffsetX, int aPrecedingOffsetY, CheckerboardViewer aSource ) { super( ACTION, aSource ); _offsetX = aOffsetX; _offsetY = aOffsetY; _precedingOffset = new ViewportOffsetImpl( aPrecedingOffsetX, aPrecedingOffsetY ); } // ///////////////////////////////////////////////////////////////////////// // INJECTION: // ///////////////////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////////// // METHODS: // ///////////////////////////////////////////////////////////////////////// /** * {@inheritDoc} */ @Override public int getViewportOffsetX() { return _offsetX; } /** * {@inheritDoc} */ @Override public int getViewportOffsetY() { return _offsetY; } /** * {@inheritDoc} */ @Override public ViewportOffset getPrecedingViewportOffset() { return _precedingOffset; } /** * {@inheritDoc} */ @Override public String toString() { return getClass().getSimpleName() + "(" + _offsetX + " x " + _offsetY + ")@" + hashCode(); } // ///////////////////////////////////////////////////////////////////////// // HOOKS: // ///////////////////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////////// // HELPER: // ///////////////////////////////////////////////////////////////////////// // ///////////////////////////////////////////////////////////////////////// // INNER CLASSES: // ///////////////////////////////////////////////////////////////////////// }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy