File: JSVTreeNode.java

package info (click to toggle)
jmol 16.2.33%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 41,128 kB
  • sloc: java: 304,265; xml: 905; sh: 201; javascript: 50; cpp: 20; makefile: 18
file content (26 lines) | stat: -rw-r--r-- 302 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * 
 */
package jspecview.api;

import java.util.Enumeration;

import jspecview.common.PanelNode;

public interface JSVTreeNode {

	int getChildCount();

	Object[] getPath();

	boolean isLeaf();

	PanelNode getPanelNode();

	Enumeration children();

	int getIndex();

	void setIndex(int index);

}