All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class tea.set.Effect3DA

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----java.applet.Applet
                                   |
                                   +----tea.set.BaseA
                                           |
                                           +----tea.set.Effect3DA

public class Effect3DA
extends BaseA
Effect3DA is an applet wrapper of Effect3D. It can be used to add a 3D effect to any applets. Parameters can be passed to child applet by simply specifying them inside the applet tag. Parameters supported by Effect3DA include:
Effect3D.DEMO
if TRUE, create a demo panel.
Effect3D.APPLET
applet name to add 3D decoration to.
Effect3D.STYLE
3D style: RAISED, LOWERED, RAISED_BORDER, or LOWERED_BORDER.
Effect3D.CAPTION
caption label for the 3D box.
Effect3D.CAPTIONPOS
caption position, LEFT, CENTER, or RIGHT.
 Example: 
 <applet code=tea/set/Effect3DA width=... height=...>
 <param name=applet value=tea.set.GraphA>
 <param name=Graph.STYLE value=BAR3D>
 <param name=Graph.X value="1,2,3,4,5,6">
 <param name=Graph.Y value="5.5,2,9,3,4.2,8">
 ...
 

See Also:
Effect3D

Constructor Index

 o Effect3DA()

Method Index

 o getWidget()
This method is overriden by actual applet to return the widget corresponding to this applet wrapper.
 o init()
Applet initialization method.

Constructors

 o Effect3DA
 public Effect3DA()

Methods

 o init
 public void init()
Applet initialization method.

Overrides:
init in class Applet
 o getWidget
 public Component getWidget()
This method is overriden by actual applet to return the widget corresponding to this applet wrapper. User can use this method to access the underlying widget directly.

Returns:
Effect3D widget.
Overrides:
getWidget in class BaseA

All Packages  Class Hierarchy  This Package  Previous  Next  Index