org.refcodes.mixin.impls.TableTailImpl Maven / Gradle / Ivy
// /////////////////////////////////////////////////////////////////////////////
// REFCODES.ORG
// /////////////////////////////////////////////////////////////////////////////
// This code is copyright (c) by Siegfried Steiner, Munich, Germany and licensed
// under the following (see "http://en.wikipedia.org/wiki/Multi-licensing")
// licenses:
// -----------------------------------------------------------------------------
// GNU General Public License, v3.0 ("http://www.gnu.org/licenses/gpl-3.0.html")
// -----------------------------------------------------------------------------
// Apache License, v2.0 ("http://www.apache.org/licenses/LICENSE-2.0")
// -----------------------------------------------------------------------------
// Please contact the copyright holding author(s) of the software artifacts in
// question for licensing issues not being covered by the above listed licenses,
// also regarding commercial licensing models or regarding the compatibility
// with other open source licenses.
// /////////////////////////////////////////////////////////////////////////////
package org.refcodes.mixin.impls;
import org.refcodes.mixin.TableTail;
/**
* Implementation of the {@link TableTail} interface.
*
* @param The type of the "character", may be a char or a sprite or a byte
* array.
*
*/
public class TableTailImpl implements TableTail {
// /////////////////////////////////////////////////////////////////////////
// STATIC:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// CONSTANTS:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// VARIABLES:
// /////////////////////////////////////////////////////////////////////////
private T _bottomLeftEdge;
private T _bottomDividerEdge;
private T _bottomRightEdge;
private T _bottomLine;
// /////////////////////////////////////////////////////////////////////////
// CONSTRUCTORS:
// /////////////////////////////////////////////////////////////////////////
/**
* Constructs the table tail.
*
* @param aBottomLeftEdge The bottom left edge.
* @param aBottomLine The bottom line.
* @param aBottomDividerEdge The bottom divider edge.
* @param aBottomRightEdge The bottom right edge.
*/
public TableTailImpl( T aBottomLeftEdge , T aBottomLine , T aBottomDividerEdge , T aBottomRightEdge ) {
_bottomLeftEdge = aBottomLeftEdge;
_bottomDividerEdge = aBottomDividerEdge;
_bottomRightEdge = aBottomRightEdge;
_bottomLine = aBottomLine;
}
// /////////////////////////////////////////////////////////////////////////
// METHODS:
// /////////////////////////////////////////////////////////////////////////
@Override
public T getBottomLeftEdge() {
return _bottomLeftEdge;
}
@Override
public T getBottomDividerEdge() {
return _bottomDividerEdge;
}
@Override
public T getBottomRightEdge() {
return _bottomRightEdge;
}
@Override
public T getBottomLine() {
return _bottomLine;
}
// /////////////////////////////////////////////////////////////////////////
// HOOKS:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// HELPER:
// /////////////////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////
// INNER CLASSES:
// /////////////////////////////////////////////////////////////////////////
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy