Java Doc for BranchGroup.java in  » 6.0-JDK-Modules » java-3d » javax » media » j3d » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » java 3d » javax.media.j3d 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.media.j3d.SceneGraphObject
      javax.media.j3d.Node
         javax.media.j3d.Group
            javax.media.j3d.BranchGroup

All known Subclasses:   org.jdesktop.j3dedit.scenegrapheditor.nodes.LoaderGroup,  org.jdesktop.j3dfly.utils.environment.J3dSky,  org.jdesktop.j3dfly.utils.vpbehaviors.vehicles.SimpleVehicle,  com.sun.j3d.utils.universe.PlatformGeometry,  org.jdesktop.j3dedit.scenegrapheditor.visualtools.PointHighlightControl,  org.jdesktop.j3dfly.utils.behaviors.KBSplineFromFileBG,  org.jdesktop.j3d.utils.scenegraph.transparency.TransparencyOrderController,  com.sun.j3d.utils.universe.ViewerAvatar,  org.jdesktop.j3d.apps.sound.SoundBranchGroup,  org.jdesktop.j3d.loaders.vrml97.impl.RGroup,  com.sun.j3d.utils.universe.ViewingPlatform,  org.jdesktop.j3dedit.scenegrapheditor.VisualToolManager,  org.jdesktop.j3dedit.scenegrapheditor.visualtools.InterpolatorPathView,  org.jdesktop.j3dedit.scenegrapheditor.visualtools.VisualTool,
BranchGroup
public class BranchGroup extends Group (Code)
The BranchGroup serves as a pointer to the root of a scene graph branch; BranchGroup objects are the only objects that can be inserted into a Locale's set of objects. A subgraph, rooted by a BranchGroup node can be thought of as a compile unit. The following things may be done with BranchGroup:

  • A BranchGroup may be compiled by calling its compile method. This causes the entire subgraph to be compiled. If any BranchGroup nodes are contained within the subgraph, they are compiled as well (along with their descendants).
  • A BranchGroup may be inserted into a virtual universe by attaching it to a Locale. The entire subgraph is then said to be live.
  • A BranchGroup that is contained within another subgraph may be reparented or detached at run time if the appropriate capabilities are set.
Note that that if a BranchGroup is included in another subgraph, as a child of some other group node, it may not be attached to a Locale.


Field Summary
final public static  intALLOW_DETACH
     For BranchGroup nodes, specifies that this BranchGroup allows detaching from its parent.

Constructor Summary
public  BranchGroup()
     Constructs and initializes a new BranchGroup node object.

Method Summary
public  NodecloneNode(boolean forceDuplicate)
     Creates a new instance of the node.
public  voidcompile()
     Compiles the source BranchGroup associated with this object and creates and caches a compiled scene graph.
 voidcreateRetained()
     Creates the retained mode BranchGroupRetained object that this BranchGroup component object will point to.
public  voiddetach()
     Detaches this BranchGroup from its parent.
public  SceneGraphPath[]pickAll(PickShape pickShape)
     Returns an array referencing all the items that are pickable below this BranchGroup that intersect with PickShape.
public  PickInfo[]pickAll(int mode, int flags, PickShape pickShape)
     Returns an array unsorted references to all the PickInfo objects that are pickable below this BranchGroup that intersect with PickShape. The accuracy of the pick is set by the pick mode.
public  SceneGraphPath[]pickAllSorted(PickShape pickShape)
     Returns a sorted array of references to all the Pickable items that intersect with the pickShape.
public  PickInfo[]pickAllSorted(int mode, int flags, PickShape pickShape)
     Returns a sorted array of PickInfo references to all the pickable items that intersect with the pickShape.
public  SceneGraphPathpickAny(PickShape pickShape)
     Returns a reference to any item that is Pickable below this BranchGroup that intersects with pickShape.
public  PickInfopickAny(int mode, int flags, PickShape pickShape)
     Returns a PickInfo which references the pickable item below this BranchGroup that intersects with pickShape. The accuracy of the pick is set by the pick mode.
public  SceneGraphPathpickClosest(PickShape pickShape)
     Returns a SceneGraphPath that references the pickable item closest to the origin of pickShape.
public  PickInfopickClosest(int mode, int flags, PickShape pickShape)
     Returns a PickInfo which references the pickable item which is closest to the origin of pickShape. The accuracy of the pick is set by the pick mode.
 voidvalidateModeFlagAndPickShape(int mode, int flags, PickShape pickShape)
    

Field Detail
ALLOW_DETACH
final public static int ALLOW_DETACH(Code)
For BranchGroup nodes, specifies that this BranchGroup allows detaching from its parent.




Constructor Detail
BranchGroup
public BranchGroup()(Code)
Constructs and initializes a new BranchGroup node object.




Method Detail
cloneNode
public Node cloneNode(boolean forceDuplicate)(Code)
Creates a new instance of the node. This routine is called by cloneTree to duplicate the current node.
Parameters:
  forceDuplicate - when set to true, causes theduplicateOnCloneTree flag to be ignored. Whenfalse, the value of each node'sduplicateOnCloneTree variable determines whetherNodeComponent data is duplicated or copied.
See Also:   Node.cloneTree
See Also:   Node.cloneNode
See Also:   Node.duplicateNode
See Also:   NodeComponent.setDuplicateOnCloneTree



compile
public void compile()(Code)
Compiles the source BranchGroup associated with this object and creates and caches a compiled scene graph.
exception:
  SceneGraphCycleException - if there is a cycle in thescene graph
exception:
  RestrictedAccessException - if the method is calledwhen this object is part of a live scene graph.



createRetained
void createRetained()(Code)
Creates the retained mode BranchGroupRetained object that this BranchGroup component object will point to.



detach
public void detach()(Code)
Detaches this BranchGroup from its parent.



pickAll
public SceneGraphPath[] pickAll(PickShape pickShape)(Code)
Returns an array referencing all the items that are pickable below this BranchGroup that intersect with PickShape. The resultant array is unordered.
Parameters:
  pickShape - the PickShape object
See Also:   SceneGraphPath
See Also:   Locale.pickAll
See Also:   PickShape
exception:
  IllegalStateException - if BranchGroup is not live.



pickAll
public PickInfo[] pickAll(int mode, int flags, PickShape pickShape)(Code)
Returns an array unsorted references to all the PickInfo objects that are pickable below this BranchGroup that intersect with PickShape. The accuracy of the pick is set by the pick mode. The mode include : PickInfo.PICK_BOUNDS and PickInfo.PICK_GEOMETRY. The amount of information returned is specified via a masked variable, flags, indicating which components are present in each returned PickInfo object.
Parameters:
  mode - picking mode, one of PickInfo.PICK_BOUNDS or PickInfo.PICK_GEOMETRY.
Parameters:
  flags - a mask indicating which components are present in each PickInfo object. This is specified as one or more individual bits that are bitwise "OR"ed together to describe the PickInfo data. The flags include :
    PickInfo.SCENEGRAPHPATH - request for computed SceneGraphPath.
    PickInfo.NODE - request for computed intersected Node.
    PickInfo.LOCAL_TO_VWORLD - request for computed local to virtual world transform.
    PickInfo.CLOSEST_INTERSECTION_POINT - request for closest intersection point.
    PickInfo.CLOSEST_DISTANCE - request for the distance of closest intersection.
    PickInfo.CLOSEST_GEOM_INFO - request for only the closest intersection geometry information.
    PickInfo.ALL_GEOM_INFO - request for all intersection geometry information.

Parameters:
  pickShape - the description of this picking volume or area.
exception:
  IllegalArgumentException - if flags contains both CLOSEST_GEOM_INFO and ALL_GEOM_INFO.
exception:
  IllegalArgumentException - if pickShape is a PickPoint and pick modeis set to PICK_GEOMETRY.
exception:
  IllegalArgumentException - if pick mode is neither PICK_BOUNDS nor PICK_GEOMETRY.
exception:
  IllegalArgumentException - if pick mode is PICK_BOUNDS and flags includes any of CLOSEST_INTERSECTION_POINT, CLOSEST_DISTANCE,CLOSEST_GEOM_INFO or ALL_GEOM_INFO.
exception:
  IllegalArgumentException - if pickShape is PickBounds and flags includes any of CLOSEST_INTERSECTION_POINT, CLOSEST_DISTANCE,CLOSEST_GEOM_INFO or ALL_GEOM_INFO.
exception:
  IllegalStateException - if BranchGroup is not live.
exception:
  CapabilityNotSetException - if the mode isPICK_GEOMETRY and the Geometry.ALLOW_INTERSECT capability bitis not set in any Geometry objects referred to by any shapenode whose bounds intersects the PickShape.
exception:
  CapabilityNotSetException - if flags contains any ofCLOSEST_INTERSECTION_POINT, CLOSEST_DISTANCE, CLOSEST_GEOM_INFOor ALL_GEOM_INFO, and the capability bits that control reading ofcoordinate data are not set in any GeometryArray object referredto by any shape node that intersects the PickShape.The capability bits that must be set to avoid this exception are as follows :
  • By-copy geometry : GeometryArray.ALLOW_COORDINATE_READ
  • By-reference geometry : GeometryArray.ALLOW_REF_DATA_READ
  • Indexed geometry : IndexedGeometryArray.ALLOW_COORDINATE_INDEX_READ(in addition to one of the above)

See Also:   Locale.pickAll(intintjavax.media.j3d.PickShape)
See Also:   PickInfo
since:
   Java 3D 1.4



pickAllSorted
public SceneGraphPath[] pickAllSorted(PickShape pickShape)(Code)
Returns a sorted array of references to all the Pickable items that intersect with the pickShape. Element [0] references the item closest to origin of PickShape successive array elements are further from the origin Note: If pickShape is of type PickBounds, the resulting array is unordered.
Parameters:
  pickShape - the PickShape object
See Also:   SceneGraphPath
See Also:   Locale.pickAllSorted
See Also:   PickShape
exception:
  IllegalStateException - if BranchGroup is not live.



pickAllSorted
public PickInfo[] pickAllSorted(int mode, int flags, PickShape pickShape)(Code)
Returns a sorted array of PickInfo references to all the pickable items that intersect with the pickShape. Element [0] references the item closest to origin of PickShape successive array elements are further from the origin The accuracy of the pick is set by the pick mode. The mode include : PickInfo.PICK_BOUNDS and PickInfo.PICK_GEOMETRY. The amount of information returned is specified via a masked variable, flags, indicating which components are present in each returned PickInfo object.
Parameters:
  mode - picking mode, one of PickInfo.PICK_BOUNDS or PickInfo.PICK_GEOMETRY.
Parameters:
  flags - a mask indicating which components are present in each PickInfo object. This is specified as one or more individual bits that are bitwise "OR"ed together to describe the PickInfo data. The flags include :
    PickInfo.SCENEGRAPHPATH - request for computed SceneGraphPath.
    PickInfo.NODE - request for computed intersected Node.
    PickInfo.LOCAL_TO_VWORLD - request for computed local to virtual world transform.
    PickInfo.CLOSEST_INTERSECTION_POINT - request for closest intersection point.
    PickInfo.CLOSEST_DISTANCE - request for the distance of closest intersection.
    PickInfo.CLOSEST_GEOM_INFO - request for only the closest intersection geometry information.
    PickInfo.ALL_GEOM_INFO - request for all intersection geometry information.

Parameters:
  pickShape - the description of this picking volume or area.
exception:
  IllegalArgumentException - if flags contains both CLOSEST_GEOM_INFO and ALL_GEOM_INFO.
exception:
  IllegalArgumentException - if pickShape is a PickPoint and pick modeis set to PICK_GEOMETRY.
exception:
  IllegalArgumentException - if pick mode is neither PICK_BOUNDS nor PICK_GEOMETRY.
exception:
  IllegalArgumentException - if pick mode is PICK_BOUNDS and flags includes any of CLOSEST_INTERSECTION_POINT, CLOSEST_DISTANCE,CLOSEST_GEOM_INFO or ALL_GEOM_INFO.
exception:
  IllegalArgumentException - if pickShape is PickBounds and flags includes any of CLOSEST_INTERSECTION_POINT, CLOSEST_DISTANCE,CLOSEST_GEOM_INFO or ALL_GEOM_INFO.
exception:
  IllegalStateException - if BranchGroup is not live.
exception:
  CapabilityNotSetException - if the mode isPICK_GEOMETRY and the Geometry.ALLOW_INTERSECT capability bitis not set in any Geometry objects referred to by any shapenode whose bounds intersects the PickShape.
exception:
  CapabilityNotSetException - if flags contains any ofCLOSEST_INTERSECTION_POINT, CLOSEST_DISTANCE, CLOSEST_GEOM_INFOor ALL_GEOM_INFO, and the capability bits that control reading ofcoordinate data are not set in any GeometryArray object referredto by any shape node that intersects the PickShape.The capability bits that must be set to avoid this exception are as follows :
  • By-copy geometry : GeometryArray.ALLOW_COORDINATE_READ
  • By-reference geometry : GeometryArray.ALLOW_REF_DATA_READ
  • Indexed geometry : IndexedGeometryArray.ALLOW_COORDINATE_INDEX_READ(in addition to one of the above)

See Also:   Locale.pickAllSorted(intintjavax.media.j3d.PickShape)
See Also:   PickInfo
since:
   Java 3D 1.4



pickAny
public SceneGraphPath pickAny(PickShape pickShape)(Code)
Returns a reference to any item that is Pickable below this BranchGroup that intersects with pickShape.
Parameters:
  pickShape - the PickShape object
See Also:   SceneGraphPath
See Also:   Locale.pickAny
See Also:   PickShape
exception:
  IllegalStateException - if BranchGroup is not live.



pickAny
public PickInfo pickAny(int mode, int flags, PickShape pickShape)(Code)
Returns a PickInfo which references the pickable item below this BranchGroup that intersects with pickShape. The accuracy of the pick is set by the pick mode. The mode include : PickInfo.PICK_BOUNDS and PickInfo.PICK_GEOMETRY. The amount of information returned is specified via a masked variable, flags, indicating which components are present in each returned PickInfo object.
Parameters:
  mode - picking mode, one of PickInfo.PICK_BOUNDS or PickInfo.PICK_GEOMETRY.
Parameters:
  flags - a mask indicating which components are present in each PickInfo object. This is specified as one or more individual bits that are bitwise "OR"ed together to describe the PickInfo data. The flags include :
    PickInfo.SCENEGRAPHPATH - request for computed SceneGraphPath.
    PickInfo.NODE - request for computed intersected Node.
    PickInfo.LOCAL_TO_VWORLD - request for computed local to virtual world transform.
    PickInfo.CLOSEST_INTERSECTION_POINT - request for closest intersection point.
    PickInfo.CLOSEST_DISTANCE - request for the distance of closest intersection.
    PickInfo.CLOSEST_GEOM_INFO - request for only the closest intersection geometry information.
    PickInfo.ALL_GEOM_INFO - request for all intersection geometry information.

Parameters:
  pickShape - the description of this picking volume or area.
exception:
  IllegalArgumentException - if flags contains both CLOSEST_GEOM_INFO and ALL_GEOM_INFO.
exception:
  IllegalArgumentException - if pickShape is a PickPoint and pick modeis set to PICK_GEOMETRY.
exception:
  IllegalArgumentException - if pick mode is neither PICK_BOUNDS nor PICK_GEOMETRY.
exception:
  IllegalArgumentException - if pick mode is PICK_BOUNDS and flags includes any of CLOSEST_INTERSECTION_POINT, CLOSEST_DISTANCE,CLOSEST_GEOM_INFO or ALL_GEOM_INFO.
exception:
  IllegalArgumentException - if pickShape is PickBounds and flags includes any of CLOSEST_INTERSECTION_POINT, CLOSEST_DISTANCE,CLOSEST_GEOM_INFO or ALL_GEOM_INFO.
exception:
  IllegalStateException - if BranchGroup is not live.
exception:
  CapabilityNotSetException - if the mode isPICK_GEOMETRY and the Geometry.ALLOW_INTERSECT capability bitis not set in any Geometry objects referred to by any shapenode whose bounds intersects the PickShape.
exception:
  CapabilityNotSetException - if flags contains any ofCLOSEST_INTERSECTION_POINT, CLOSEST_DISTANCE, CLOSEST_GEOM_INFOor ALL_GEOM_INFO, and the capability bits that control reading ofcoordinate data are not set in any GeometryArray object referredto by any shape node that intersects the PickShape.The capability bits that must be set to avoid this exception are as follows :
  • By-copy geometry : GeometryArray.ALLOW_COORDINATE_READ
  • By-reference geometry : GeometryArray.ALLOW_REF_DATA_READ
  • Indexed geometry : IndexedGeometryArray.ALLOW_COORDINATE_INDEX_READ(in addition to one of the above)

See Also:   Locale.pickAny(intintjavax.media.j3d.PickShape)
See Also:   PickInfo
since:
   Java 3D 1.4



pickClosest
public SceneGraphPath pickClosest(PickShape pickShape)(Code)
Returns a SceneGraphPath that references the pickable item closest to the origin of pickShape. Note: If pickShape is of type PickBounds, the return is any pickable node below this BranchGroup.
Parameters:
  pickShape - the PickShape object
See Also:   SceneGraphPath
See Also:   Locale.pickClosest
See Also:   PickShape
exception:
  IllegalStateException - if BranchGroup is not live.



pickClosest
public PickInfo pickClosest(int mode, int flags, PickShape pickShape)(Code)
Returns a PickInfo which references the pickable item which is closest to the origin of pickShape. The accuracy of the pick is set by the pick mode. The mode include : PickInfo.PICK_BOUNDS and PickInfo.PICK_GEOMETRY. The amount of information returned is specified via a masked variable, flags, indicating which components are present in each returned PickInfo object.
Parameters:
  mode - picking mode, one of PickInfo.PICK_BOUNDS or PickInfo.PICK_GEOMETRY.
Parameters:
  flags - a mask indicating which components are present in each PickInfo object. This is specified as one or more individual bits that are bitwise "OR"ed together to describe the PickInfo data. The flags include :
    PickInfo.SCENEGRAPHPATH - request for computed SceneGraphPath.
    PickInfo.NODE - request for computed intersected Node.
    PickInfo.LOCAL_TO_VWORLD - request for computed local to virtual world transform.
    PickInfo.CLOSEST_INTERSECTION_POINT - request for closest intersection point.
    PickInfo.CLOSEST_DISTANCE - request for the distance of closest intersection.
    PickInfo.CLOSEST_GEOM_INFO - request for only the closest intersection geometry information.
    PickInfo.ALL_GEOM_INFO - request for all intersection geometry information.

Parameters:
  pickShape - the description of this picking volume or area.
exception:
  IllegalArgumentException - if flags contains both CLOSEST_GEOM_INFO and ALL_GEOM_INFO.
exception:
  IllegalArgumentException - if pickShape is a PickPoint and pick modeis set to PICK_GEOMETRY.
exception:
  IllegalArgumentException - if pick mode is neither PICK_BOUNDS nor PICK_GEOMETRY.
exception:
  IllegalArgumentException - if pick mode is PICK_BOUNDS and flags includes any of CLOSEST_INTERSECTION_POINT, CLOSEST_DISTANCE,CLOSEST_GEOM_INFO or ALL_GEOM_INFO.
exception:
  IllegalArgumentException - if pickShape is PickBounds and flags includes any of CLOSEST_INTERSECTION_POINT, CLOSEST_DISTANCE,CLOSEST_GEOM_INFO or ALL_GEOM_INFO.
exception:
  IllegalStateException - if BranchGroup is not live.
exception:
  CapabilityNotSetException - if the mode isPICK_GEOMETRY and the Geometry.ALLOW_INTERSECT capability bitis not set in any Geometry objects referred to by any shapenode whose bounds intersects the PickShape.
exception:
  CapabilityNotSetException - if flags contains any ofCLOSEST_INTERSECTION_POINT, CLOSEST_DISTANCE, CLOSEST_GEOM_INFOor ALL_GEOM_INFO, and the capability bits that control reading ofcoordinate data are not set in any GeometryArray object referredto by any shape node that intersects the PickShape.The capability bits that must be set to avoid this exception are as follows :
  • By-copy geometry : GeometryArray.ALLOW_COORDINATE_READ
  • By-reference geometry : GeometryArray.ALLOW_REF_DATA_READ
  • Indexed geometry : IndexedGeometryArray.ALLOW_COORDINATE_INDEX_READ(in addition to one of the above)

See Also:   Locale.pickClosest(intintjavax.media.j3d.PickShape)
See Also:   PickInfo
since:
   Java 3D 1.4



validateModeFlagAndPickShape
void validateModeFlagAndPickShape(int mode, int flags, PickShape pickShape)(Code)



Fields inherited from javax.media.j3d.Group
final public static int ALLOW_CHILDREN_EXTEND(Code)(Java Doc)
final public static int ALLOW_CHILDREN_READ(Code)(Java Doc)
final public static int ALLOW_CHILDREN_WRITE(Code)(Java Doc)
final public static int ALLOW_COLLISION_BOUNDS_READ(Code)(Java Doc)
final public static int ALLOW_COLLISION_BOUNDS_WRITE(Code)(Java Doc)

Methods inherited from javax.media.j3d.Group
public void addChild(Node child)(Code)(Java Doc)
public Node cloneNode(boolean forceDuplicate)(Code)(Java Doc)
Node cloneTree(boolean forceDuplicate, Hashtable nodeHashtable)(Code)(Java Doc)
void createRetained()(Code)(Java Doc)
void duplicateAttributes(Node originalNode, boolean forceDuplicate)(Code)(Java Doc)
public Enumeration getAllChildren()(Code)(Java Doc)
public boolean getAlternateCollisionTarget()(Code)(Java Doc)
public Node getChild(int index)(Code)(Java Doc)
public Bounds getCollisionBounds()(Code)(Java Doc)
public int indexOfChild(Node child)(Code)(Java Doc)
public void insertChild(Node child, int index)(Code)(Java Doc)
public void moveTo(BranchGroup branchGroup)(Code)(Java Doc)
public int numChildren()(Code)(Java Doc)
public void removeAllChildren()(Code)(Java Doc)
public void removeChild(int index)(Code)(Java Doc)
public void removeChild(Node child)(Code)(Java Doc)
public void setAlternateCollisionTarget(boolean target)(Code)(Java Doc)
public void setChild(Node child, int index)(Code)(Java Doc)
public void setCollisionBounds(Bounds bounds)(Code)(Java Doc)

Fields inherited from javax.media.j3d.Node
final public static int ALLOW_AUTO_COMPUTE_BOUNDS_READ(Code)(Java Doc)
final public static int ALLOW_AUTO_COMPUTE_BOUNDS_WRITE(Code)(Java Doc)
final public static int ALLOW_BOUNDS_READ(Code)(Java Doc)
final public static int ALLOW_BOUNDS_WRITE(Code)(Java Doc)
final public static int ALLOW_COLLIDABLE_READ(Code)(Java Doc)
final public static int ALLOW_COLLIDABLE_WRITE(Code)(Java Doc)
final public static int ALLOW_LOCALE_READ(Code)(Java Doc)
final public static int ALLOW_LOCAL_TO_VWORLD_READ(Code)(Java Doc)
final public static int ALLOW_PARENT_READ(Code)(Java Doc)
final public static int ALLOW_PICKABLE_READ(Code)(Java Doc)
final public static int ALLOW_PICKABLE_WRITE(Code)(Java Doc)
final public static int ENABLE_COLLISION_REPORTING(Code)(Java Doc)
final public static int ENABLE_PICK_REPORTING(Code)(Java Doc)

Methods inherited from javax.media.j3d.Node
final void checkDuplicateNode(Node originalNode, boolean forceDuplicate)(Code)(Java Doc)
void checkForCycle()(Code)(Java Doc)
public Node cloneNode(boolean forceDuplicate)(Code)(Java Doc)
public Node cloneTree()(Code)(Java Doc)
public Node cloneTree(boolean forceDuplicate)(Code)(Java Doc)
public Node cloneTree(boolean forceDuplicate, boolean allowDanglingReferences)(Code)(Java Doc)
public Node cloneTree(NodeReferenceTable referenceTable)(Code)(Java Doc)
public Node cloneTree(NodeReferenceTable referenceTable, boolean forceDuplicate)(Code)(Java Doc)
public Node cloneTree(NodeReferenceTable referenceTable, boolean forceDuplicate, boolean allowDanglingReferences)(Code)(Java Doc)
Node cloneTree(boolean forceDuplicate, Hashtable nodeHashtable)(Code)(Java Doc)
void duplicateAttributes(Node originalNode, boolean forceDuplicate)(Code)(Java Doc)
public void duplicateNode(Node originalNode, boolean forceDuplicate)(Code)(Java Doc)
public Bounds getBounds()(Code)(Java Doc)
public boolean getBoundsAutoCompute()(Code)(Java Doc)
public boolean getCollidable()(Code)(Java Doc)
public void getLocalToVworld(Transform3D t)(Code)(Java Doc)
public void getLocalToVworld(SceneGraphPath path, Transform3D t)(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Node getParent()(Code)(Java Doc)
public boolean getPickable()(Code)(Java Doc)
public void setBounds(Bounds bounds)(Code)(Java Doc)
public void setBoundsAutoCompute(boolean autoCompute)(Code)(Java Doc)
public void setCollidable(boolean collidable)(Code)(Java Doc)
public void setPickable(boolean pickable)(Code)(Java Doc)

Fields inherited from javax.media.j3d.SceneGraphObject
Hashtable nodeHashtable(Code)(Java Doc)
SceneGraphObjectRetained retained(Code)(Java Doc)

Methods inherited from javax.media.j3d.SceneGraphObject
final boolean capabilityBitsEmpty()(Code)(Java Doc)
final void checkForLiveOrCompiled()(Code)(Java Doc)
final public void clearCapability(int bit)(Code)(Java Doc)
final public void clearCapabilityIsFrequent(int bit)(Code)(Java Doc)
final void clearLive()(Code)(Java Doc)
void createRetained()(Code)(Java Doc)
protected void duplicateSceneGraphObject(SceneGraphObject originalNode)(Code)(Java Doc)
final public boolean getCapability(int bit)(Code)(Java Doc)
final public boolean getCapabilityIsFrequent(int bit)(Code)(Java Doc)
public String getName()(Code)(Java Doc)
String getNamePrefix()(Code)(Java Doc)
NodeComponent getNodeComponent(NodeComponent originalNodeComponent, boolean forceDuplicate, Hashtable hashtable)(Code)(Java Doc)
public Object getUserData()(Code)(Java Doc)
final public boolean isCompiled()(Code)(Java Doc)
final public boolean isLive()(Code)(Java Doc)
final boolean isLiveOrCompiled()(Code)(Java Doc)
final public void setCapability(int bit)(Code)(Java Doc)
final public void setCapabilityIsFrequent(int bit)(Code)(Java Doc)
final void setCompiled()(Code)(Java Doc)
void setDefaultReadCapabilities(int[] bits)(Code)(Java Doc)
final void setLive()(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void setUserData(Object userData)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void updateNodeReferences(NodeReferenceTable referenceTable)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.