1 16 package org.apache.cocoon.woody.formmodel; 17 18 23 public class RepeaterDefinition extends AbstractContainerDefinition { 24 private int initialSize = 0; 25 26 public RepeaterDefinition(int initialSize) { 27 super(); 28 this.initialSize = initialSize; 29 } 30 31 public Widget createInstance() { 32 return new Repeater(this); 33 } 34 35 public int getInitialSize() { 36 return this.initialSize; 37 } 38 } 39 | Popular Tags |