Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/TableEFacet/org.eclipse.papyrus.infra.table.efacet.properties/src/org/eclipse/papyrus/infra/table/efacet/properties/providers/ClassLabelProvider.java')
-rw-r--r--deprecated/TableEFacet/org.eclipse.papyrus.infra.table.efacet.properties/src/org/eclipse/papyrus/infra/table/efacet/properties/providers/ClassLabelProvider.java51
1 files changed, 51 insertions, 0 deletions
diff --git a/deprecated/TableEFacet/org.eclipse.papyrus.infra.table.efacet.properties/src/org/eclipse/papyrus/infra/table/efacet/properties/providers/ClassLabelProvider.java b/deprecated/TableEFacet/org.eclipse.papyrus.infra.table.efacet.properties/src/org/eclipse/papyrus/infra/table/efacet/properties/providers/ClassLabelProvider.java
new file mode 100644
index 00000000000..430f02601fe
--- /dev/null
+++ b/deprecated/TableEFacet/org.eclipse.papyrus.infra.table.efacet.properties/src/org/eclipse/papyrus/infra/table/efacet/properties/providers/ClassLabelProvider.java
@@ -0,0 +1,51 @@
+/**
+ * Copyright (c) 2012 CEA LIST.
+ *
+ *
+ * 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:
+ * Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
+ */
+package org.eclipse.papyrus.infra.table.efacet.properties.providers;
+
+import org.eclipse.jface.viewers.ILabelProvider;
+import org.eclipse.jface.viewers.ILabelProviderListener;
+import org.eclipse.swt.graphics.Image;
+
+
+public class ClassLabelProvider implements ILabelProvider {
+
+ public void addListener(final ILabelProviderListener listener) {
+ //nothing to do
+
+ }
+
+ public void dispose() {
+ //nothing to do
+ }
+
+ public boolean isLabelProperty(final Object element, final String property) {
+ //nothing to do
+ return false;
+ }
+
+ public void removeListener(final ILabelProviderListener listener) {
+ //nothing to do
+
+ }
+
+ public Image getImage(final Object element) {
+ //nothing to do
+ return null;
+ }
+
+ public String getText(final Object element) {
+ //nothing to do
+ return "";
+ }
+
+}

Back to the top