⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tagbean.java

📁 GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。GridSphere 是在欧盟提供基金的 GridLab 项目下开发的
💻 JAVA
字号:
/** * @author <a href="mailto:novotny@gridsphere.org">Jason Novotny</a> * @version $Id: TagBean.java 4496 2006-02-08 20:27:04Z wehrens $ */package org.gridsphere.provider.portletui.beans;import java.util.Locale;/** * The <code>TagBean</code> interface describes the base methods provided by all visual ui beans */public interface TagBean {    public static final String CALENDAR_NAME = "ca";    public static final String CHECKBOX_NAME = "cb";    public static final String FILEINPUT_NAME = "fi";    public static final String HIDDENFIELD_NAME = "hf";    public static final String LISTBOXITEM_NAME = "li";    public static final String TEXTFIELD_NAME = "tf";    public static final String TEXTAREA_NAME = "ta";    public static final String TEXTEDITOR_NAME = "te";    public static final String PASSWORD_NAME = "pb";    public static final String RADIOBUTTON_NAME = "rb";    public static final String RICHTEXTEDITOR_NAME = "rt";    /**     * Returns the bean identifier     *     * @return the bean identifier     */    public String getBeanId();    public void addParam(String name, String value);    public void removeParam(String name);    /**     * Sets the bean identifier     *     * @param beanId the bean identifier     */    public void setBeanId(String beanId);    public void setLocale(Locale locale);    /**     * Returns the HTML representation of the bean     *     * @return html string representing the object     */    public String toStartString();    /**     * Returns the HTML representation of the bean     *     * @return html string representing the object     */    public String toEndString();}

⌨️ 快捷键说明

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