Package org.gudy.azureus2.ui.swt.views.columnsetup

Source Code of org.gudy.azureus2.ui.swt.views.columnsetup.ColumnTC_Info

/**
* Created on Jan 3, 2009
*
* Copyright 2008 Vuze, Inc.  All rights reserved.
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License only.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
*/

package org.gudy.azureus2.ui.swt.views.columnsetup;

import org.gudy.azureus2.core3.internat.MessageText;
import org.gudy.azureus2.ui.swt.views.table.utils.CoreTableColumn;

import com.aelitis.azureus.ui.common.table.TableColumnCore;

import org.gudy.azureus2.plugins.ui.tables.TableCell;
import org.gudy.azureus2.plugins.ui.tables.TableCellRefreshListener;

/**
* @author TuxPaper
* @created Jan 3, 2009
*
*/
public class ColumnTC_Info
  extends CoreTableColumn
  implements TableCellRefreshListener
{
  public static final String COLUMN_ID = "TableColumnInfo";

  /**
   * @param name
   * @param tableID
   */
  public ColumnTC_Info(String tableID) {
    super(COLUMN_ID, tableID);
    initialize(ALIGN_LEAD | ALIGN_TOP, POSITION_INVISIBLE, 150, INTERVAL_INVALID_ONLY);
  }

  // @see org.gudy.azureus2.plugins.ui.tables.TableCellRefreshListener#refresh(org.gudy.azureus2.plugins.ui.tables.TableCell)
  public void refresh(TableCell cell) {
    TableColumnCore column = (TableColumnCore) cell.getDataSource();
    String key = column.getTitleLanguageKey();
    if (!cell.setSortValue(key) && cell.isValid()) {
      return;
    }
    cell.setText(MessageText.getString(key + ".info", ""));
  }
}
TOP

Related Classes of org.gudy.azureus2.ui.swt.views.columnsetup.ColumnTC_Info

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.