public class TagSample extends GeneralVarTagBinding
{
@Override
public void render()
{
int limit = Integer.parseInt((String) this.getAttributeValue("limit"));
for (int i = 0; i < limit; i++)
{
this.binds(i) // or this.bind("value", i);
this.doBodyRender();
}
}
}