/*
//*****************************************************************************
/*
* @(#) Interpolator_Info.java
*
* Project: Java3dTree
* Client: Java 3D Community
*
* Project Information:
* dselman@tornadolabs.com
* http://www.tornadolabs.com
*
* @author Daniel Selman: dselman@tornadolabs.com
*/
//*****************************************************************************
package com.tornadolabs.j3dtree;
import javax.media.j3d.*;
public class Interpolator_Info extends Behavior_Info
{
public Interpolator_Info()
{
}
java.util.Enumeration getChildren( Object obj )
{
Interpolator interpolator = (Interpolator) obj;
return createCompoundEnumeration( super.getChildren( obj ), interpolator.getAlpha() );
}
public int[] getCapabilityBits()
{
return super.getCapabilityBits();
}
public String getInfo( Object obj )
{
Interpolator Interpolator = (Interpolator) obj;
String szText = super.getInfo( obj );
szText = insertSectionBreak( szText );
szText += "Interpolator\r\n";
return szText;
}
} |