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