/** Company: Shout3D LLC Project: Shout3D 2.0 Sample Code Class: BindingTestApplet Date: April 26, 1999 Description: Class for applet that tests binding mechanism (C) Copyright Shout3D LLC. - 1997-2001 - All rights reserved */ package applets; import shout3d.*; /** * BindingTestApplet * * @author Paul Isaacs * @author Jim Stewartson * @author Dave Westwood */ public class BindingTestApplet extends Shout3DApplet { // Set the panel to be public void initShout3DPanel() { panel = new BindingTestPanel(this); } }