You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
637 B
20 lines
637 B
11 years ago
|
package com.jme3.gde.gui.nodes;
|
||
|
|
||
|
import jada.ngeditor.model.GUI;
|
||
|
import jada.ngeditor.model.elements.specials.GUseControls;
|
||
|
import org.openide.nodes.AbstractNode;
|
||
|
import org.openide.nodes.Children;
|
||
|
|
||
|
public class GUseControlsNode extends AbstractNode {
|
||
|
private static final String basePath="com/jme3/gde/gui/multiview/icons";
|
||
|
private final GUseControls controls;
|
||
|
|
||
|
public GUseControlsNode(GUI gui,GUseControls controls) {
|
||
|
super(Children.LEAF);
|
||
|
this.setIconBaseWithExtension(basePath+"/"+"control"+".png");
|
||
|
this.controls = controls;
|
||
|
this.setName(controls.getFilename());
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|