All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.tapestry5.services.RelativeElementPosition Maven / Gradle / Ivy

Go to download

Central module for Tapestry, containing interfaces to the Java Servlet API and all core services and components.

There is a newer version: 5.8.6
Show newest version
package org.apache.tapestry5.services;

/**
 * Used by {@link org.apache.tapestry5.services.HiddenFieldLocationRules} to identify where a hidden field may be placed
 * relative to a particular element.
 */
public enum RelativeElementPosition
{
    /**
     * The hidden field may be placed inside the element, as a child.
     */
    INSIDE,

    /**
     * The hidden field may be placed after the element, as a sibling.
     */
    AFTER;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy