dialoglinktag.java
来自「GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。」· Java 代码 · 共 21 行
JAVA
21 行
package org.gridsphere.provider.portletui.tags;import javax.servlet.jsp.JspException;/** * The <code>TableRowTag</code> represents a table row element that is conatined within a <code>TableTag</code> * and itself may contain <code>TableCellTag</code>s */public class DialogLinkTag extends DialogTag { public int doStartTag() throws JspException { isLink = true; super.doStartTag(); return SKIP_BODY; } public int doEndTag() throws JspException { return EVAL_PAGE; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?