com.funkyroach.use.ui.outline.USOutlineLabelDecorator.java Source code

Java tutorial

Introduction

Here is the source code for com.funkyroach.use.ui.outline.USOutlineLabelDecorator.java

Source

/*******************************************************************************
 * Copyright (c) 2011 Olexandr V. Shaposhnikov.
 * 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:
 *    Olexandr V. Shaposhnikov - initial API and implementation and/or initial documentation
 *******************************************************************************/
package com.funkyroach.use.ui.outline;

import org.eclipse.jface.viewers.BaseLabelProvider;
import org.eclipse.jface.viewers.ILabelDecorator;
import org.eclipse.swt.graphics.Image;

public class USOutlineLabelDecorator extends BaseLabelProvider implements ILabelDecorator {

    @Override
    public Image decorateImage(Image image, Object element) {
        // TODO
        return image;
    }

    @Override
    public String decorateText(String text, Object element) {
        return text;
    }

}