1 package org.jahia.deprecated.taglibs.container; 2 3 4 /** 5 * Class IfNotMiddleContainerTag : checks if the current container is 6 * the first of the container list or the last one 7 * 8 * @author Jerome Tamiotti 9 */ 10 public class IfNotMiddleContainerTag extends IfContainerPositionTag { 11 12 public boolean isPositionGood( ContainerTag container) { 13 return container.isFirst() || container.isLast(); 14 } 15 16 } 17