KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > jsp > taglib > macro > ListLastTag


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.bridge.jsp.taglib.macro;
11
12 import javax.servlet.jsp.JspTagException JavaDoc;
13 import org.mmbase.bridge.jsp.taglib.ListConditionTag;
14 /**
15  * Macro tag for listContdition last
16  *
17  * @version $Id: ListLastTag.java,v 1.4 2004/03/23 19:09:55 michiel Exp $
18  */

19
20 public class ListLastTag extends ListConditionTag {
21     protected final int getValue() throws JspTagException JavaDoc {
22         return CONDITION_LAST;
23     }
24 }
25
Popular Tags