org.refcodes.checkerboard.ViewportOffsetChangedEventImpl Maven / Gradle / Ivy
Show all versions of refcodes-checkerboard Show documentation
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:
// /////////////////////////////////////////////////////////////////////////
}