001    /**
002     * Copyright (c) 2000-present 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.http.HttpServletRequest;
018    import javax.servlet.jsp.JspException;
019    
020    /**
021     * @author Eduardo Lundgren
022     * @author Bruno Basto
023     * @author Nathan Cavanaugh
024     * @author Julio Camarero
025     * @generated
026     */
027    public abstract class BaseFieldsetGroupTag extends com.liferay.taglib.util.IncludeTag {
028    
029            @Override
030            public int doStartTag() throws JspException {
031                    setAttributeNamespace(_ATTRIBUTE_NAMESPACE);
032    
033                    return super.doStartTag();
034            }
035    
036            public java.lang.String getMarkupView() {
037                    return _markupView;
038            }
039    
040            public void setMarkupView(java.lang.String markupView) {
041                    _markupView = markupView;
042    
043                    setScopedAttribute("markupView", markupView);
044            }
045    
046            @Override
047            protected void cleanUp() {
048                    super.cleanUp();
049    
050                    _markupView = null;
051            }
052    
053            @Override
054            protected String getEndPage() {
055                    return _END_PAGE;
056            }
057    
058            @Override
059            protected String getStartPage() {
060                    return _START_PAGE;
061            }
062    
063            @Override
064            protected void setAttributes(HttpServletRequest request) {
065                    setNamespacedAttribute(request, "markupView", _markupView);
066            }
067    
068            protected static final String _ATTRIBUTE_NAMESPACE = "aui:fieldset-group:";
069    
070            private static final String _END_PAGE =
071                    "/html/taglib/aui/fieldset_group/end.jsp";
072    
073            private static final String _START_PAGE =
074                    "/html/taglib/aui/fieldset_group/start.jsp";
075    
076            private java.lang.String _markupView = null;
077    
078    }