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

de.alpharogroup.swing.panels.shuffletables.ShuffleTablePanel Maven / Gradle / Ivy

There is a newer version: 5.5
Show newest version
/**
 * The MIT License
 *
 * Copyright (C) 2007 Asterios Raptis
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
package de.alpharogroup.swing.panels.shuffletables;

import javax.swing.JScrollPane;

import org.jdesktop.swingx.JXButton;
import org.jdesktop.swingx.JXLabel;
import org.jdesktop.swingx.JXPanel;

import de.alpharogroup.swing.x.GenericJXTable;
import de.alpharogroup.swing.x.GenericShuffleJXTable;

public class ShuffleTablePanel extends JXPanel
{

	/** The Constant serialVersionUID. */
	private static final long serialVersionUID = 1L;

	protected JXButton btnAddAll;

	protected JXButton btnAdd;

	protected JXButton btnRemoveAll;

	protected JXButton btnRemove;

	protected JXLabel lblAvailableElements;

	protected JXLabel lblSelectedElements;

	protected JScrollPane scrPnTblAvailableElements;

	protected JScrollPane scrPnTblSelectedElements;

	protected GenericJXTable tblAvailableElements;

	protected GenericJXTable tblSelectedElements;

	protected GenericShuffleJXTable shuffleTable;

	public ShuffleTablePanel()
	{
		super();
	}

	public JXButton getBtnAdd()
	{
		return btnAdd;
	}

	public JXButton getBtnAddAll()
	{
		return btnAddAll;
	}

	public JXButton getBtnRemove()
	{
		return btnRemove;
	}

	public JXButton getBtnRemoveAll()
	{
		return btnRemoveAll;
	}

	public JXLabel getLblAvailableElements()
	{
		return lblAvailableElements;
	}

	public JXLabel getLblSelectedElements()
	{
		return lblSelectedElements;
	}


	public JScrollPane getScrPnTblAvailableElements()
	{
		return scrPnTblAvailableElements;
	}

	public JScrollPane getScrPnTblSelectedElements()
	{
		return scrPnTblSelectedElements;
	}

	public GenericJXTable getTblAvailableElements()
	{
		return tblAvailableElements;
	}

	public GenericJXTable getTblSelectedElements()
	{
		return tblSelectedElements;
	}

	public void setBtnAdd(final JXButton btnAdd)
	{
		this.btnAdd = btnAdd;
	}

	public void setBtnAddAll(final JXButton btnAddAll)
	{
		this.btnAddAll = btnAddAll;
	}

	public void setBtnRemove(final JXButton btnRemove)
	{
		this.btnRemove = btnRemove;
	}

	public void setBtnRemoveAll(final JXButton btnRemoveAll)
	{
		this.btnRemoveAll = btnRemoveAll;
	}

	public void setLblAvailableElements(final JXLabel lblAvailableElements)
	{
		this.lblAvailableElements = lblAvailableElements;
	}

	public void setLblSelectedElements(final JXLabel lblSelectedElements)
	{
		this.lblSelectedElements = lblSelectedElements;
	}

	public void setScrPnTblAvailableElements(final JScrollPane scrPnTblAvailableElements)
	{
		this.scrPnTblAvailableElements = scrPnTblAvailableElements;
	}

	public void setScrPnTblSelectedElements(final JScrollPane scrPnTblSelectedElements)
	{
		this.scrPnTblSelectedElements = scrPnTblSelectedElements;
	}

	public void setTblAvailableElements(final GenericJXTable tblAvailableElements)
	{
		this.tblAvailableElements = tblAvailableElements;
	}

	public void setTblSelectedElements(final GenericJXTable tblSelectedElements)
	{
		this.tblSelectedElements = tblSelectedElements;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy