1 package org.jahia.deprecated.taglibs.container; 2 3 4 /** 5 * Class IfNotLastContainerTag : evaluates the body only when the container is not 6 * the last of the list 7 * 8 * @author Jerome Tamiotti 9 */ 10 public class IfNotLastContainerTag extends IfContainerPositionTag { 11 12 public boolean isPositionGood(ContainerTag container) { 13 return !container.isLast(); 14 } 15 16 } 17