package org.simantics.scenegraph.swing; import javax.swing.JComponent; /* * @author Teemu Mätäsniemi * * This class is for separating init() and attach methods(). * attach() is called when node is part of tree. * init() is called while node is loaded. */ public class ComponentNode2 extends ComponentNode { /** * */ private static final long serialVersionUID = 3275892312292369026L; @Override public void init(){ } }