📄 ellinktag.java
字号:
/*
* $Header: /home/cvs/jakarta-struts/contrib/struts-el/src/share/org/apache/strutsel/taglib/html/ELLinkTag.java,v 1.12 2004/03/14 07:15:01 sraeburn Exp $
* $Revision: 1.12 $
* $Date: 2004/03/14 07:15:01 $
*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.strutsel.taglib.html;
import org.apache.struts.taglib.html.LinkTag;
import javax.servlet.jsp.JspException;
import org.apache.strutsel.taglib.utils.EvalHelper;
/**
* Generate a URL-encoded hyperlink to the specified URI.
*<p>
* This class is a subclass of the class
* <code>org.apache.struts.taglib.html.LinkTag</code> which provides most of
* the described functionality. This subclass allows all attribute values to
* be specified as expressions utilizing the JavaServer Pages Standard Library
* expression language.
*
* @version $Revision: 1.12 $
*/
public class ELLinkTag extends LinkTag {
/**
* Instance variable mapped to "accessKey" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String accessKeyExpr;
/**
* Instance variable mapped to "action" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String actionExpr;
/**
* Instance variable mapped to "module" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String moduleExpr;
/**
* Instance variable mapped to "anchor" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String anchorExpr;
/**
* Instance variable mapped to "forward" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String forwardExpr;
/**
* Instance variable mapped to "href" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String hrefExpr;
/**
* Instance variable mapped to "indexed" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String indexedExpr;
/**
* Instance variable mapped to "indexId" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String indexIdExpr;
/**
* Instance variable mapped to "linkName" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String linkNameExpr;
/**
* Instance variable mapped to "name" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String nameExpr;
/**
* Instance variable mapped to "onblur" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String onblurExpr;
/**
* Instance variable mapped to "onclick" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String onclickExpr;
/**
* Instance variable mapped to "ondblclick" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String ondblclickExpr;
/**
* Instance variable mapped to "onfocus" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String onfocusExpr;
/**
* Instance variable mapped to "onkeydown" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String onkeydownExpr;
/**
* Instance variable mapped to "onkeypress" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String onkeypressExpr;
/**
* Instance variable mapped to "onkeyup" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String onkeyupExpr;
/**
* Instance variable mapped to "onmousedown" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String onmousedownExpr;
/**
* Instance variable mapped to "onmousemove" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String onmousemoveExpr;
/**
* Instance variable mapped to "onmouseout" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String onmouseoutExpr;
/**
* Instance variable mapped to "onmouseover" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String onmouseoverExpr;
/**
* Instance variable mapped to "onmouseup" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String onmouseupExpr;
/**
* Instance variable mapped to "page" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String pageExpr;
/**
* Instance variable mapped to "paramId" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String paramIdExpr;
/**
* Instance variable mapped to "paramName" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String paramNameExpr;
/**
* Instance variable mapped to "paramProperty" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String paramPropertyExpr;
/**
* Instance variable mapped to "paramScope" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String paramScopeExpr;
/**
* Instance variable mapped to "property" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String propertyExpr;
/**
* Instance variable mapped to "scope" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String scopeExpr;
/**
* Instance variable mapped to "style" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String styleExpr;
/**
* Instance variable mapped to "styleClass" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String styleClassExpr;
/**
* Instance variable mapped to "styleId" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String styleIdExpr;
/**
* Instance variable mapped to "tabindex" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String tabindexExpr;
/**
* Instance variable mapped to "target" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String targetExpr;
/**
* Instance variable mapped to "title" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String titleExpr;
/**
* Instance variable mapped to "titleKey" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String titleKeyExpr;
/**
* Instance variable mapped to "transaction" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String transactionExpr;
/**
* Instance variable mapped to "useLocalEncoding" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
private String useLocalEncodingExpr;
/**
* Getter method for "accessKey" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
public String getAccesskeyExpr() { return (accessKeyExpr); }
/**
* Getter method for "action" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
public String getActionExpr() { return (actionExpr); }
/**
* Getter method for "module" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
public String getModuleExpr() { return (moduleExpr); }
/**
* Getter method for "anchor" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
public String getAnchorExpr() { return (anchorExpr); }
/**
* Getter method for "forward" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
public String getForwardExpr() { return (forwardExpr); }
/**
* Getter method for "href" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
public String getHrefExpr() { return (hrefExpr); }
/**
* Getter method for "indexed" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
public String getIndexedExpr() { return (indexedExpr); }
/**
* Getter method for "indexId" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
public String getIndexIdExpr() { return (indexIdExpr); }
/**
* Getter method for "linkName" tag attribute.
* (Mapping set in associated BeanInfo class.)
*/
public String getLinkNameExpr() { return (linkNameExpr); }
/**
* Getter method for "name" tag attribute.
* (Mapping set in associated BeanInfo class.)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -