/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.taglib.aui.base; import javax.servlet.http.HttpServletRequest; import javax.servlet.jsp.JspException; /** * @author Eduardo Lundgren * @author Bruno Basto * @author Nathan Cavanaugh * @author Julio Camarero * @generated */ public abstract class BaseFieldsetGroupTag extends com.liferay.taglib.util.IncludeTag { @Override public int doStartTag() throws JspException { setAttributeNamespace(_ATTRIBUTE_NAMESPACE); return super.doStartTag(); } public java.lang.String getMarkupView() { return _markupView; } public void setMarkupView(java.lang.String markupView) { _markupView = markupView; } @Override protected void cleanUp() { super.cleanUp(); _markupView = null; } @Override protected String getEndPage() { return _END_PAGE; } @Override protected String getStartPage() { return _START_PAGE; } @Override protected void setAttributes(HttpServletRequest request) { request.setAttribute("aui:fieldset-group:markupView", _markupView); } protected static final String _ATTRIBUTE_NAMESPACE = "aui:fieldset-group:"; private static final String _END_PAGE = "/html/taglib/aui/fieldset_group/end.jsp"; private static final String _START_PAGE = "/html/taglib/aui/fieldset_group/start.jsp"; private java.lang.String _markupView = null; }