menugenerator.java

来自「ALGAE是一个快速创建算法演示的框架。目前支持的算法实现语言包括java和c」· Java 代码 · 共 31 行

JAVA
31
字号
package edu.odu.cs.zeil.AlgAE.Server;/** *  Interface to classes that  can be used for generating AlgAE algorithm *  menus. **/public interface MenuGenerator{  /**   *  This routine should perform one or more calls to algae.menuItem   *  to create menu entries that the user can selesct via the Algorithm   *  menu.   */  public void menu();  /**   *  Supply a message to appear in the Help..About dialog.   *  Typically, this indicates the origin of the source code   *  being animated and the name of the person who prepared the   *  animation.   **/  public String about();  }  

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?