package edu.csusb.danby.applet;

public interface DMenuAction {

/**
* menuAction is called by PSMenu. .
* @param menuLabel is the label of the menu
* @param menuItemLabel is the label of the item
* on the menu which was selected
*/
    public void menuAction(String menuLabel, String menuItemLabel);
    public void menuAction(String menuLabel, int menuItemIndex);
    }
