home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-10-25 | 559 b | 31 lines |
- /*
- * Copyright 1998 Symantec Corporation, All Rights Reserved.
- */
-
- package com.symantec.itools.vcafe.openapi.commands;
-
- import com.symantec.itools.vcafe.openapi.VisualObject;
-
- public interface Command
- {
- /*
- * Gets the text of the Command
- */
- String getText();
-
- /*
- * Check if the Command is enabled
- */
- boolean isEnabled();
-
- /*
- * Check if the Command is contextual
- */
- boolean isContextual();
-
- /*
- * Executes the Command
- */
- void execute(VisualObject[] visualObjects);
- }
-