KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > deprecated > taglibs > container > IfLastContainerTag


1 package org.jahia.deprecated.taglibs.container;
2
3
4 /**
5  * Class IfLastContainerTag : evaluates the body only when the container is the
6  * last of the list
7  *
8  * @author Jerome Tamiotti
9  */

10 public class IfLastContainerTag extends IfContainerPositionTag {
11  
12     public boolean isPositionGood(ContainerTag container) {
13         return container.isLast();
14     }
15
16 }
17
Popular Tags