com.jxcell
Class JBookApplet

java.lang.Object
  extended byjava.awt.Component
      extended byjava.awt.Container
          extended byjava.awt.Panel
              extended byjava.applet.Applet
                  extended byjavax.swing.JApplet
                      extended bycom.jxcell.JBookApplet
All Implemented Interfaces:
javax.accessibility.Accessible, java.awt.event.ActionListener, java.util.EventListener, java.awt.image.ImageObserver, java.awt.MenuContainer, ObjectListener, javax.swing.RootPaneContainer, java.io.Serializable

public class JBookApplet
extends javax.swing.JApplet
implements java.io.Serializable, java.awt.event.ActionListener, ObjectListener

See Also:
Serialized Form

Field Summary
static long serialVersionUID
           
 
Fields inherited from class java.awt.Component
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT
 
Fields inherited from interface java.awt.image.ImageObserver
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH
 
Constructor Summary
JBookApplet()
           
 
Method Summary
 void actionPerformed(java.awt.event.ActionEvent event)
           
 void destroy()
           
 java.lang.String[][] getParameterInfo()
           
 View getView()
           
 void init()
           
 void objectClicked(ObjectEvent objectevent)
          This method is called to notify the listener of a single-click event occuring on the object
 void objectDblClicked(ObjectEvent objectevent)
          The method is called to notify the listener of a double-click event occuring on the object
 void objectGotFocus(ObjectEvent objectevent)
          As each object gains keyboard focus, this method is called to notify all listeners of this new state
 void objectLostFocus(ObjectEvent objectevent)
          When an object loses keyboard focus, this method notifies registered listeners of this change in state
 void objectValueChanged(ObjectEvent objectevent)
          Whenever the "value" of an object changes (applicable to checkboxes and list boxes) this method notifies the listener of this change
 
Methods inherited from class javax.swing.JApplet
getAccessibleContext, getContentPane, getGlassPane, getJMenuBar, getLayeredPane, getRootPane, remove, setContentPane, setGlassPane, setJMenuBar, setLayeredPane, setLayout, update
 
Methods inherited from class java.applet.Applet
getAppletContext, getAppletInfo, getAudioClip, getAudioClip, getCodeBase, getDocumentBase, getImage, getImage, getLocale, getParameter, isActive, newAudioClip, play, play, resize, resize, setStub, showStatus, start, stop
 
Methods inherited from class java.awt.Panel
addNotify
 
Methods inherited from class java.awt.Container
add, add, add, add, add, addContainerListener, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getAlignmentX, getAlignmentY, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getInsets, getLayout, getListeners, getMaximumSize, getMinimumSize, getPreferredSize, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paint, paintComponents, preferredSize, print, printComponents, remove, removeAll, removeContainerListener, removeNotify, setFocusCycleRoot, setFocusTraversalKeys, setFocusTraversalPolicy, setFont, transferFocusBackward, transferFocusDownCycle, validate
 
Methods inherited from class java.awt.Component
action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, contains, contains, createImage, createImage, createVolatileImage, createVolatileImage, disable, dispatchEvent, enable, enable, enableInputMethods, getBackground, getBounds, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getFontMetrics, getForeground, getGraphics, getGraphicsConfiguration, getHeight, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocation, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getSize, getToolkit, getTreeLock, getWidth, getX, getY, gotFocus, handleEvent, hasFocus, hide, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isDoubleBuffered, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isOpaque, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, printAll, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, repaint, requestFocus, requestFocusInWindow, reshape, setBackground, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setEnabled, setFocusable, setFocusTraversalKeysEnabled, setForeground, setIgnoreRepaint, setLocale, setLocation, setLocation, setName, setSize, setSize, setVisible, show, show, size, toString, transferFocus, transferFocusUpCycle
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

public static final long serialVersionUID
See Also:
Constant Field Values
Constructor Detail

JBookApplet

public JBookApplet()
Method Detail

destroy

public void destroy()

getView

public View getView()

getParameterInfo

public java.lang.String[][] getParameterInfo()

actionPerformed

public void actionPerformed(java.awt.event.ActionEvent event)
Specified by:
actionPerformed in interface java.awt.event.ActionListener

init

public void init()

objectClicked

public void objectClicked(ObjectEvent objectevent)
Description copied from interface: ObjectListener
This method is called to notify the listener of a single-click event occuring on the object

Specified by:
objectClicked in interface ObjectListener
Parameters:
objectevent - A single-click event

objectDblClicked

public void objectDblClicked(ObjectEvent objectevent)
Description copied from interface: ObjectListener
The method is called to notify the listener of a double-click event occuring on the object

Specified by:
objectDblClicked in interface ObjectListener
Parameters:
objectevent - A double-click event

objectGotFocus

public void objectGotFocus(ObjectEvent objectevent)
Description copied from interface: ObjectListener
As each object gains keyboard focus, this method is called to notify all listeners of this new state

Specified by:
objectGotFocus in interface ObjectListener
Parameters:
objectevent - An object gains keyboard focus event

objectLostFocus

public void objectLostFocus(ObjectEvent objectevent)
Description copied from interface: ObjectListener
When an object loses keyboard focus, this method notifies registered listeners of this change in state

Specified by:
objectLostFocus in interface ObjectListener
Parameters:
objectevent - An object loses keyboard focus event

objectValueChanged

public void objectValueChanged(ObjectEvent objectevent)
Description copied from interface: ObjectListener
Whenever the "value" of an object changes (applicable to checkboxes and list boxes) this method notifies the listener of this change

Specified by:
objectValueChanged in interface ObjectListener
Parameters:
objectevent - A "value" change in a checkbox or list box