//$Id: DataModelSelectionIndex.java 2025 2006-09-18 16:43:02Z gavin $ package org.jboss.seam.annotations.datamodel; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import java.lang.annotation.Target; import org.jboss.seam.annotations.DataSelectorClass; import org.jboss.seam.databinding.DataModelIndexSelector; /** * Injects the selected row index of a ListDataModel, * MapDataModel or ArrayDataModel. Intended for use * with @DataModel. * * @author Gavin King * @see DataModel */ @Target({FIELD, METHOD}) @Retention(RUNTIME) @Documented @DataSelectorClass(DataModelIndexSelector.class) public @interface DataModelSelectionIndex { /** * The context variable name of the DataModel. Defaults * to the name for the outjected @DataModel if there * is exactly one @DataModel for the component. */ String value() default ""; }