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

org.refcodes.mixin.impls.TableHeaderImpl 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.TableHeader;
import org.refcodes.mixin.TableTail;

/**
 * Implementation of the {@link TableHeaderImpl} interface.
 *
 * @param  The type of the "character", may be a char or a sprite or a byte
 *        array.
 *
 */
public class TableHeaderImpl extends TableBodyImpl implements TableHeader {

	// /////////////////////////////////////////////////////////////////////////
	// STATIC:
	// /////////////////////////////////////////////////////////////////////////

	// /////////////////////////////////////////////////////////////////////////
	// CONSTANTS:
	// /////////////////////////////////////////////////////////////////////////

	// /////////////////////////////////////////////////////////////////////////
	// VARIABLES:
	// /////////////////////////////////////////////////////////////////////////

	private TableTail _tableTail;

	// /////////////////////////////////////////////////////////////////////////
	// CONSTRUCTORS:
	// /////////////////////////////////////////////////////////////////////////

	/**
	 * @param aLeftLine The left line.
	 * @param aLeftEdge The left edge.
	 * @param aTopLeftEdge The top left edge.
	 * @param aBottomLeftEdge The bottom left edge.
	 * @param aTopLine The top line.
	 * @param aDividerEdge The top edge.
	 * @param aTopDividerEdge The top divider edge.
	 * @param aBottomDividerEdge The bottom divider edge.
	 * @param aRightLine The right line.
	 * @param aRightEdge The right edge.
	 * @param aTopRightEdge The top right edge.
	 * @param aBottomRightEdge The bottom right edge.
	 * @param aDividerLineThe divider line.
	 * @param BottomLine The bottom line.
	 */
	public TableHeaderImpl( T aLeftLine , T aLeftEdge , T aTopLeftEdge , T aBottomLeftEdge , T aTopLine , T aBottomLine , T aDividerLine , T aDividerEdge , T aTopDividerEdge , T aBottomDividerEdge , T aRightLine , T aRightEdge , T aTopRightEdge , T aBottomRightEdge  ) {
		super( aLeftLine, aLeftEdge, aTopLeftEdge, aBottomLeftEdge, aTopLine, aDividerLine, aDividerEdge, aTopDividerEdge, aBottomDividerEdge, aRightLine, aRightEdge, aTopRightEdge, aBottomRightEdge );
		_tableTail = new TableTailImpl( aBottomLeftEdge, aBottomLine, aBottomDividerEdge, aBottomRightEdge );
	}

	// /////////////////////////////////////////////////////////////////////////
	// METHODS:
	// /////////////////////////////////////////////////////////////////////////

	@Override
	public T getBottomLeftEdge() {
		return _tableTail.getBottomLeftEdge();
	}

	@Override
	public T getBottomDividerEdge() {
		return _tableTail.getBottomDividerEdge();
	}

	@Override
	public T getBottomRightEdge() {
		return _tableTail.getBottomRightEdge();
	}

	@Override
	public T getBottomLine() {
		return _tableTail.getBottomLine();
	}

	// /////////////////////////////////////////////////////////////////////////
	// HOOKS:
	// /////////////////////////////////////////////////////////////////////////

	// /////////////////////////////////////////////////////////////////////////
	// HELPER:
	// /////////////////////////////////////////////////////////////////////////

	// /////////////////////////////////////////////////////////////////////////
	// INNER CLASSES:
	// /////////////////////////////////////////////////////////////////////////
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy