1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package net.jbeans.j3d.universe;
24
25 /* ------------------ Import classes (packages) ------------------- *//package-summary/html">class="comment"> ------------------ Import classes (packages) ------------------- *//package-summary.html">class="comment">/* ------------------ Import classes (packages) ------------------- *//package-summary.html">class="comment"> ------------------ Import classes (packages) ------------------- */
26 import java.util.*;
27
28
29
30
31 /***
32 * generally describe BranchGroupDetachable in here
33 *
34 * @version $Revision: 1.3 $
35 * @author Masahiro Takatsuka (masa@jbeans.net)
36 */
37
38 interface BranchGroupDetachable {
39 /***
40 * Get a list of all the detachable subgraphs.
41 */
42 Vector getDetachableBranchGroups();
43
44 /***
45 // * Returns an index number of the next branch group.
46 // */
47
48
49 /***
50 // * Sets a new index number of the next branch group.
51 // */
52
53 }
54