001 package org.apache.tapestry5.services; 002 003 /** 004 * Used by {@link org.apache.tapestry5.services.HiddenFieldLocationRules} to identify where a hidden field may be placed 005 * relative to a particular element. 006 */ 007 public enum RelativeElementPosition 008 { 009 /** 010 * The hidden field may be placed inside the element, as a child. 011 */ 012 INSIDE, 013 014 /** 015 * The hidden field may be placed after the element, as a sibling. 016 */ 017 AFTER; 018 }