FileDocCategorySizeDatePackage
Node_Info.javaAPI DocExample1578Sat Oct 23 13:31:30 BST 1999com.tornadolabs.j3dtree

Node_Info

public class Node_Info extends SceneGraphObject_Info

Fields Summary
private static final int[]
m_kCapabilityArray
Constructors Summary
public Node_Info()


	 
	
	
Methods Summary
public int[]getCapabilityBits()

		return createCompoundArray( m_kCapabilityArray, super.getCapabilityBits() );
	
public java.lang.StringgetInfo(java.lang.Object obj)

		Node node = (Node) obj;
			
		String szText = super.getInfo( obj );
		szText = insertSectionBreak( szText );
		
		szText += "Node\r\n";
		szText += "BoundsAutoCompute: " + node.getBoundsAutoCompute() + "\r\n";
		szText += "Collidable: " + node.getCollidable() + "\r\n";
		szText += "Pickable: " + node.getPickable() + "\r\n";
		szText += "Bounds: " + node.getBounds() + "\r\n";
		
		try
		{
			szText += "Parent: " + node.getParent() + "\r\n";
		}
		catch( Exception e )
		{
		}
		
		return szText;