Package com.dubture.composer.ui.explorer

Source Code of com.dubture.composer.ui.explorer.PackageTreeLabelProvider

package com.dubture.composer.ui.explorer;

import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.php.internal.ui.util.PHPPluginImages;
import org.eclipse.swt.graphics.Image;

import com.dubture.composer.core.model.PackagePath;

@SuppressWarnings("restriction")
public class PackageTreeLabelProvider extends LabelProvider {

  @Override
  public String getText(Object element) {
    if (element instanceof PackagePath) {
      PackagePath path = (PackagePath) element;
      return path.getPackageName();
    }

    return null;
  }

  @Override
  public Image getImage(Object element) {
    if (element instanceof PackagePath) {
      return PHPPluginImages.get(PHPPluginImages.IMG_OBJS_LIBRARY);
    }

    return null;
  }
}
TOP

Related Classes of com.dubture.composer.ui.explorer.PackageTreeLabelProvider

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.