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

  1. /*
  2.  * Copyright 1998 Symantec Corporation, All Rights Reserved.
  3.  */
  4.  
  5. package com.symantec.itools.vcafe.openapi;
  6.  
  7. import java.awt.MenuShortcut;
  8. import java.awt.MenuItem;
  9. import java.lang.String;
  10.  
  11. /**
  12.  * The API used to represent and access menuitems in Visual Cafe
  13.  *
  14.  * @author Symantec Internet Tools Division
  15.  * @version 1.0
  16.  * @since VCafe 3.0
  17.  */
  18. public class VisualMenuItem extends MenuItem
  19. {
  20.     public VisualMenuItem()
  21.     {
  22.         super();
  23.     }
  24.  
  25.     public VisualMenuItem(String label)
  26.     {
  27.         super(label);
  28.     }
  29.  
  30.     public VisualMenuItem(String label, MenuShortcut s)
  31.     {
  32.         super(label, s);
  33.     }
  34.  
  35.     public void setHelpId(int id)
  36.     {
  37.         helpId = id;
  38.     }
  39.  
  40.     public void setMessageText(String msg)
  41.     {
  42.         messageText = msg;
  43.     }
  44.  
  45.     public int getHelpId()
  46.     {
  47.         return helpId;
  48.     }
  49.  
  50.     public String getMessageText()
  51.     {
  52.         return messageText;
  53.     }
  54.  
  55.     private int helpId = 0;
  56.     private String messageText = "";
  57. }