blob: 5144d278270eb65d63e5b1b285fa473358a7311b [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2009 Red Hat
* 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:
* Rob Stryker - initial implementation and ongoing maintenance
******************************************************************************/
package org.eclipse.wst.common.componentcore.ui.internal.propertypage;
import org.eclipse.swt.graphics.Image;
import org.eclipse.wst.common.componentcore.resources.IVirtualComponent;
public interface IVirtualComponentLabelProvider {
public boolean canHandle(IVirtualComponent component);
public String getSourceText(IVirtualComponent component);
public Image getSourceImage(IVirtualComponent component);
}