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

  1. /*
  2.  * Copyright 1998 Symantec Corporation, All Rights Reserved.
  3.  */
  4.  
  5. package com.symantec.itools.vcafe.openapi.commands;
  6.  
  7. import com.symantec.itools.vcafe.openapi.VisualObject;
  8.  
  9. public interface CommandManager
  10. {
  11.     /*
  12.      * Called before the menuBar is clicked in
  13.      */
  14.     Command[] getCommands(VisualObject[] visualObjects);
  15. }
  16.