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

  1. /*
  2.  * Copyright 1998 Symantec Corporation, All Rights Reserved.
  3.  */
  4.  
  5. package com.symantec.itools.vcafe.openapi.event;
  6.  
  7. /**
  8.  * The adapter which receives menu events in Visual Cafe.
  9.  * @see VisualMenuListener
  10.  * @see VisualMenuEvent
  11.  *
  12.  * @author Symantec Internet Tools Division
  13.  * @version 1.0
  14.  * @since VCafe 3.0
  15.  */
  16. public abstract class VisualMenuAdapter implements VisualMenuListener
  17. {
  18.     public void menuOpening(VisualMenuEvent e) {}
  19. }
  20.