nor..67 6fd3bbedae move sdk to trunk
git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@6972 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
2011-03-14 12:55:55 +00:00

23 lines
404 B
Java

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.jme3.gde.gui.multiview;
import org.openide.nodes.AbstractNode;
import org.openide.nodes.Children;
/**
*
* @author normenhansen
*/
public class NiftyScreenNode extends AbstractNode{
public NiftyScreenNode(String name) {
super(Children.LEAF);
setName(name);
}
}