blob: e5da79f050910b2125e3b5f8532149d400c3166e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Chase Technology Ltd - http://www.chasetechnology.co.uk
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Doug Satchwell (Chase Technology Ltd) - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsl.internal.debug.ui.tabs.main;
import org.eclipse.jface.viewers.ILabelProviderListener;
import org.eclipse.jface.viewers.ITableLabelProvider;
import org.eclipse.swt.graphics.Image;
import org.eclipse.wst.xsl.launching.config.LaunchAttribute;
public class ParametersLabelProvider implements ITableLabelProvider
{
public String getColumnText(Object element, int columnIndex)
{
LaunchAttribute p = (LaunchAttribute) element;
switch (columnIndex)
{
case 0:
return p.uri;
case 1:
return p.value;
}
return "!"; //$NON-NLS-1$
}
public Image getColumnImage(Object element, int columnIndex)
{
return null;
}
public void addListener(ILabelProviderListener listener)
{
}
public void dispose()
{
}
public boolean isLabelProperty(Object element, String property)
{
return false;
}
public void removeListener(ILabelProviderListener listener)
{
}
}