home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Main.bin / OptionsWindow.java < prev    next >
Text File  |  1998-10-25  |  1KB  |  59 lines

  1. /*
  2.  * Copyright 1998 Symantec Corporation, All Rights Reserved.
  3.  */
  4.  
  5. package com.symantec.itools.vcafe.openapi.pluginapi;
  6.  
  7. import java.awt.event.ActionListener;
  8. import symantec.itools.vcafe.plugin.BaseOptionsWindow;
  9.  
  10. /**
  11.  * The API used to represent the dialog box containing tabs in
  12.  * Visual Cafe.
  13.  * @see PluginOptionTab
  14.  * @see com.symantec.itools.vcafe.openapi.VisualCafe#getOptionsWindow
  15.  *
  16.  * @author Symantec Internet Tools Division
  17.  * @version 1.0
  18.  * @since VCafe 3.0
  19.  */
  20. public class OptionsWindow extends BaseOptionsWindow
  21. {
  22.     /**
  23.      * Construct an instance of options window
  24.      */
  25.     public OptionsWindow()
  26.     {
  27.         super();
  28.     }
  29.  
  30.     /**
  31.      * Append an option tab to this window
  32.      *
  33.      * @param o        The PluginOptionTab to append
  34.      */
  35.     public void add(PluginOptionTab o)
  36.     {
  37.         super.add(o);
  38.     }
  39.  
  40.     /**
  41.      * Add an action listener to Ok/Cancel/Help buttons in the options window.
  42.      *
  43.      * @param l        The ActionListener to add
  44.      */
  45.     public void addActionListener(ActionListener l)
  46.     {
  47.         super.addActionListener(l);
  48.     }
  49.  
  50.     /**
  51.      * Remove the specified action listener
  52.      *
  53.      * @param l        The ActionListener to remove
  54.      */    
  55.     public void removeActionListener(ActionListener l)
  56.     {
  57.         super.removeActionListener(l);
  58.     }
  59. }