1 /*******************************************************************************
\r
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
\r
3 * in Industry THTH ry.
\r
4 * All rights reserved. This program and the accompanying materials
\r
5 * are made available under the terms of the Eclipse Public License v1.0
\r
6 * which accompanies this distribution, and is available at
\r
7 * http://www.eclipse.org/legal/epl-v10.html
\r
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.browsing.ui.common.labelers;
\r
14 import java.util.Map;
\r
16 import org.simantics.browsing.ui.GraphExplorer.ModificationContext;
\r
17 import org.simantics.browsing.ui.content.Labeler;
\r
20 * A stub implementation of Labeler.
\r
22 * @author Tuukka Lehtonen
\r
24 public class LabelerStub implements Labeler {
\r
26 protected LabelerContent content = LabelerContent.NO_CONTENT;
\r
28 public LabelerStub() {
\r
31 public LabelerStub(LabelerContent content) {
\r
32 if (content == null)
\r
33 throw new NullPointerException(this + " tried to initialize with null content");
\r
34 this.content = content;
\r
37 public void setContent(LabelerContent content) {
\r
38 if (content == null)
\r
39 throw new NullPointerException(this + " tried to set null content");
\r
40 this.content = content;
\r
44 public Map<String, String> getLabels() {
\r
45 return content.labels;
\r
49 public Map<String, String> getRuntimeLabels() {
\r
54 public int getCategory() {
\r
55 return content.category;
\r
59 public Modifier getModifier(ModificationContext context, String key) {
\r
64 public void setListener(LabelerListener listener) {
\r