001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.taglib.aui.base;
016    
017    import javax.servlet.jsp.JspException;
018    
019    /**
020     * @author Eduardo Lundgren
021     * @author Bruno Basto
022     * @author Nathan Cavanaugh
023     * @author Julio Camarero
024     * @generated
025     */
026    public class BaseToolTagImpl extends javax.servlet.jsp.tagext.TagSupport {
027    
028            @Override
029            public int doStartTag() throws JspException {
030                    return super.doStartTag();
031            }
032    
033            public java.lang.String getHandler() {
034                    return _handler;
035            }
036    
037            public java.lang.String getIcon() {
038                    return _icon;
039            }
040    
041            @Override
042            public java.lang.String getId() {
043                    return _id;
044            }
045    
046            public void setHandler(java.lang.String handler) {
047                    _handler = handler;
048            }
049    
050            public void setIcon(java.lang.String icon) {
051                    _icon = icon;
052            }
053    
054            @Override
055            public void setId(java.lang.String id) {
056                    _id = id;
057            }
058    
059            protected void cleanUp() {
060                    _handler = null;
061                    _icon = null;
062                    _id = null;
063            }
064    
065            protected String getPage() {
066                    return _PAGE;
067            }
068    
069            private static final String _PAGE =
070                    "/html/taglib/aui/tool/page.jsp";
071    
072            private java.lang.String _handler = null;
073            private java.lang.String _icon = null;
074            private java.lang.String _id = null;
075    
076    }