KickJava   Java API By Example, From Geeks To Geeks.

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


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

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