FileDocCategorySizeDatePackage
Appearance_Info.javaAPI DocExample2545Fri Dec 10 12:49:52 GMT 1999com.tornadolabs.j3dtree

Appearance_Info

public class Appearance_Info extends ObjectInfo

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


	 
	
	
Methods Summary
public int[]getCapabilityBits()

		return createCompoundArray( m_kCapabilityArray, super.getCapabilityBits() );
	
java.util.EnumerationgetChildren(java.lang.Object obj)

		java.util.Vector v = new java.util.Vector();
		
		Appearance app = (Appearance) obj;
		
		if( app.getColoringAttributes() != null )
			v.addElement( app.getColoringAttributes() );
		
		if( app.getLineAttributes() != null )
			v.addElement( app.getLineAttributes() );
		
		if( app.getMaterial() != null )
			v.addElement( app.getMaterial() );
		
		if( app.getPolygonAttributes() != null )
			v.addElement( app.getPolygonAttributes() );
		
		if( app.getRenderingAttributes() != null )
			v.addElement( app.getRenderingAttributes() );
		
		if( app.getTexCoordGeneration() != null )
			v.addElement( app.getTexCoordGeneration() );
		
		if( app.getTexture() != null )
			v.addElement( app.getTexture() );
		
		if( app.getTextureAttributes() != null )
			v.addElement( app.getTextureAttributes() );
		
		if( app.getTransparencyAttributes() != null )
			v.addElement( app.getTransparencyAttributes() );
		
		return createCompoundEnumeration( v, super.getChildren( obj ) );
	
public java.lang.StringgetInfo(java.lang.Object obj)

		String szText = super.getInfo( obj );

		szText = insertSectionBreak( szText );
		szText += "Apperance\r\n";
				
		return szText;