]> gerrit.simantics Code Review - simantics/platform.git/blob - ComponentNode2.java
bd32de6dcbb0b4490d0e15439394310482413b5c
[simantics/platform.git] / 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 }