📄 menuitem.java
字号:
package org.roller.presentation.tags.menu;import javax.servlet.http.HttpServletRequest;/** An individual menu item, contained in a Menu */ public interface MenuItem { /** Name of menu */ public String getName(); /** Url to be displayed in menu */ public String getUrl( javax.servlet.jsp.PageContext pctx ); /** Determine if this menu item is selected */ public boolean isSelected( HttpServletRequest req ); /** Name of true/false configuration property that enables this menu */ public void setEnabledProperty( String enabledProperty );}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -