home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-10-25 | 995 b | 44 lines |
- /*
- * Copyright 1998 Symantec Corporation, All Rights Reserved.
- */
-
- package com.symantec.itools.vcafe.openapi;
-
- import java.lang.String;
- import symantec.itools.vcafe.visual.BaseVisualMenu;
- import com.symantec.itools.vcafe.openapi.event.VisualMenuListener;
-
- /**
- * The API used to represent and access menus in Visual Cafe
- *
- * @author Symantec Internet Tools Division
- * @version 1.0
- * @since VCafe 3.0
- */
- public class VisualMenu extends BaseVisualMenu
- {
- public VisualMenu(String s)
- {
- super(s);
- }
-
- /**
- * Add a listener to recieve menu events in Visual Cafe
- *
- * @param l The VisualMenuListener to add
- */
- public void addVisualMenuListener(VisualMenuListener l)
- {
- super.addVisualMenuListener(l);
- }
-
- /**
- * Remove the specified menu listener
- *
- * @param l The VisualMenuListener to remove
- */
- public void removeVisualMenuListener(VisualMenuListener l)
- {
- super.removeVisualMenuListener(l);
- }
- }