/** * Copyright (C) 2008-2010, Squale Project - http://www.squale.org * * This file is part of Squale. * * Squale 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 3 of the * License, or any later version. * * Squale 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 General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Squale. If not, see <http://www.gnu.org/licenses/>. */ package org.squale.squaleweb.tagslib; import javax.servlet.http.HttpServletRequest; import javax.servlet.jsp.JspException; import javax.servlet.jsp.tagext.TagSupport; import org.apache.struts.util.RequestUtils; import org.apache.struts.util.ResponseUtils; import org.squale.squaleweb.util.SqualeWebActionUtils; /** */ public class PictoTag extends TagSupport { /** le param�tre "nom" du tag */ private String name; /** le param�tre "propri�t�" du tag */ private String property; /** permet de r�cup�rer la note si on la connait sert pour la page mark */ private String mark; /** * Affiche l'image. * * @param pNote la note ou l'index. * @param pRequest la requ�te * @return le chemin de l'image */ private String generatePicto( String pNote, HttpServletRequest pRequest ) { String imgTag = ""; imgTag = SqualeWebActionUtils.generatePictoWithTooltip( pNote, pRequest ); return imgTag; } /** * @see javax.servlet.jsp.tagext.TagSupport#doEndTag() {@inheritDoc} M�thode de lancement du tag */ public int doStartTag() throws JspException { // Publie if ( mark != null ) { ResponseUtils.write( pageContext, generatePicto( mark, (HttpServletRequest) pageContext.getRequest() ) ); } else { ResponseUtils.write( pageContext, generatePicto( (String) RequestUtils.lookup( pageContext, name, property, null ), (HttpServletRequest) pageContext.getRequest() ) ); } return SKIP_BODY; } /** * @see javax.servlet.jsp.tagext.TagSupport#doEndTag() {@inheritDoc} M�thode de lancement du tag */ public int doEndTag() throws JspException { return EVAL_PAGE; } /** * @return le nom */ public String getName() { return name; } /** * @return la propri�t� */ public String getProperty() { return property; } /** * change le nom * * @param newName le nouveau nom */ public void setName( String newName ) { name = newName; } /** * change la propri�t� * * @param newProperty la nouvelle propri�t� */ public void setProperty( String newProperty ) { property = newProperty; } /** * @return la note */ public String getMark() { return mark; } /** * @param newMark la nouvelle note */ public void setMark( String newMark ) { mark = newMark; } }