home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Main.bin / VisualMenuListener.java < prev    next >
Text File  |  1998-10-28  |  579b  |  24 lines

  1. /*
  2.  * Copyright 1998 Symantec Corporation, All Rights Reserved.
  3.  */
  4.  
  5. package com.symantec.itools.vcafe.openapi.event;
  6.  
  7. import java.util.EventListener;
  8.  
  9. /**
  10.  * The API used to recieve menu events in Visual Cafe.
  11.  * @see com.symantec.itools.vcafe.openapi.VisualCafe#getContextualMenu
  12.  *
  13.  * @author Symantec Internet Tools Division
  14.  * @version 1.0
  15.  * @since VCafe 3.0
  16.  */
  17. public interface VisualMenuListener extends EventListener
  18. {
  19.     /**
  20.      * Invoked when a menu is in the process of being opened
  21.      */
  22.     public void menuOpening(VisualMenuEvent e);
  23. }
  24.