]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scenegraph.swing/src/org/simantics/scenegraph/swing/LabelNode.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scenegraph.swing / src / org / simantics / scenegraph / swing / LabelNode.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.scenegraph.swing;
13
14 import javax.swing.JLabel;
15
16 import org.simantics.scenegraph.ExportableWidget.OutputWidget;
17
18 @OutputWidget("value")
19 public class LabelNode extends ComponentNode<JLabel> {
20     /**
21      * 
22      */
23     private static final long serialVersionUID = 7073028693751719102L;
24
25     protected String value = "";
26     
27     @Override
28     public void init() {
29         component = new JLabel(value);
30         super.init();
31     }
32
33     @SyncField("value")
34     public void setText(String value) {
35         this.value = value;
36         // RemoteViewer does not have component initialized
37         if (component != null) {
38             component.setText(value);
39         }
40     }
41     
42     public String getText() {
43         return value;
44     }
45 }