blob: 7ded1ae31ff7c259b9730a1aa9d86a3f8bb5f335 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2004 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.navigator.resources.internal.workbench;
import org.eclipse.core.resources.IResource;
import org.eclipse.jface.viewers.DecoratingLabelProvider;
import org.eclipse.jface.viewers.ITreeContentProvider;
import org.eclipse.ui.IMemento;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.model.WorkbenchLabelProvider;
import org.eclipse.ui.navigator.ICommonLabelProvider;
import org.eclipse.ui.navigator.IExtensionStateModel;
/**
* <p>
* The following class is experimental until fully documented.
* </p>
*/
public class ResourceExtensionLabelProvider extends DecoratingLabelProvider implements ICommonLabelProvider {
public ResourceExtensionLabelProvider() {
super(new WorkbenchLabelProvider(), PlatformUI.getWorkbench().getDecoratorManager().getLabelDecorator());
}
/*
* (non-Javadoc)
*
* @see org.eclipse.wst.common.navigator.internal.views.extensions.ICommonLabelProvider#initialize(java.lang.String)
*/
public void init(IExtensionStateModel aModel, ITreeContentProvider aContentProvider) {
//init
}
/*
* (non-Javadoc)
*
* @see org.eclipse.wst.common.navigator.internal.views.extensions.ICommonLabelProvider#getDescription(java.lang.Object)
*/
public String getDescription(Object anElement) {
if (anElement instanceof IResource)
return ((IResource) anElement).getFullPath().makeRelative().toString();
return null;
}
public void restoreState(IMemento aMemento) {
// TODO Auto-generated method stub
}
public void saveState(IMemento aMemento) {
// TODO Auto-generated method stub
}
}