/** * 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 BaseButtonRowTag extends com.liferay.taglib.util.IncludeTag { @Override public int doStartTag() throws JspException { setAttributeNamespace(_ATTRIBUTE_NAMESPACE); return super.doStartTag(); } public java.lang.String getCssClass() { return _cssClass; } public java.lang.String getId() { return _id; } public void setCssClass(java.lang.String cssClass) { _cssClass = cssClass; } public void setId(java.lang.String id) { _id = id; } @Override protected void cleanUp() { super.cleanUp(); _cssClass = null; _id = null; } @Override protected String getStartPage() { return _START_PAGE; } @Override protected void setAttributes(HttpServletRequest request) { request.setAttribute("aui:button-row:cssClass", _cssClass); request.setAttribute("aui:button-row:id", _id); } protected static final String _ATTRIBUTE_NAMESPACE = "aui:button-row:"; private static final String _START_PAGE = "/html/taglib/aui/button_row/start.jsp"; private java.lang.String _cssClass = null; private java.lang.String _id = null; }