]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scenegraph.swing/src/org/simantics/scenegraph/swing/ComponentNode2.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.scenegraph.swing / src / org / simantics / scenegraph / swing / ComponentNode2.java
1 package org.simantics.scenegraph.swing;
2
3 import javax.swing.JComponent;
4
5 /*
6  * @author Teemu Mätäsniemi
7  * 
8  * This class is for separating init() and attach methods().
9  * attach() is called when node is part of tree.
10  * init() is called while node is loaded.
11  */
12 public class ComponentNode2<T extends JComponent> extends ComponentNode<T> {
13         /**
14          * 
15          */
16         private static final long serialVersionUID = 3275892312292369026L;
17
18         @Override
19         public void init(){
20                 
21         }
22 }