]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.utils.ui/src/org/simantics/utils/ui/jface/ToStringLabelProvider.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.utils.ui / src / org / simantics / utils / ui / jface / ToStringLabelProvider.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.utils.ui.jface;
13
14 import org.eclipse.jface.viewers.ILabelProvider;
15 import org.eclipse.jface.viewers.ILabelProviderListener;
16 import org.eclipse.swt.graphics.Image;
17
18 /**
19  * @author Toni Kalajainen
20  */
21 public class ToStringLabelProvider implements ILabelProvider {
22
23     @Override
24     public Image getImage(Object element) {
25         return null;
26     }
27
28     @Override
29     public String getText(Object element) {
30         return element.toString();
31     }
32
33     @Override
34     public void addListener(ILabelProviderListener listener) {
35     }
36
37     @Override
38     public void dispose() {
39     }
40
41     @Override
42     public boolean isLabelProperty(Object element, String property) {
43         return false;
44     }
45
46     @Override
47     public void removeListener(ILabelProviderListener listener) {
48     }
49
50 }