Interface IRepetitionContainer
- 
- All Superinterfaces:
 Serializable
public interface IRepetitionContainer extends Serializable
Represents a form element that is repeated, by virtue of being repeated itself, and not by just being inside a repeated container.- Since:
 - 7.0.11
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFieldName()intgetOrdinalIndex() 
 - 
 
- 
- 
Method Detail
- 
getFieldName
String getFieldName()
- Returns:
 - The name of the container which is repeatd. This may be the form element itself when the element is repeated, or a parent div or fieldset when that div or fieldset is repeated.
 
 
- 
getOrdinalIndex
int getOrdinalIndex()
- Returns:
 - The 0-based ordinal index of the repetition. 
0is the first repetition,1the second repetition etc. Contrast this with the repetition ID or index, which is also a number, but neither always starts at 0 nor is it continous. 
 
 - 
 
 -