com.nokia.tools.carbide.ct.confml.ui.overview.ConfMLViewContentProvider.java Source code

Java tutorial

Introduction

Here is the source code for com.nokia.tools.carbide.ct.confml.ui.overview.ConfMLViewContentProvider.java

Source

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/
package com.nokia.tools.carbide.ct.confml.ui.overview;

import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.jface.viewers.ILabelProviderListener;
import org.eclipse.jface.viewers.ITableLabelProvider;
import org.eclipse.jface.viewers.ITreeContentProvider;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.swt.graphics.Image;

public class ConfMLViewContentProvider implements ITreeContentProvider, ITableLabelProvider, ILabelProvider {

    public Object[] getChildren(Object parentElement) {

        return null;
    }

    public Object getParent(Object element) {

        return null;
    }

    public boolean hasChildren(Object element) {

        return false;
    }

    public Object[] getElements(Object inputElement) {

        return null;
    }

    public void dispose() {

    }

    public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {

    }

    public Image getColumnImage(Object element, int columnIndex) {

        return null;
    }

    public String getColumnText(Object element, int columnIndex) {

        return null;
    }

    public void addListener(ILabelProviderListener listener) {

    }

    public boolean isLabelProperty(Object element, String property) {

        return false;
    }

    public void removeListener(ILabelProviderListener listener) {

    }

    public Image getImage(Object element) {

        return null;
    }

    public String getText(Object element) {

        return null;
    }

}