1 16 package org.apache.cocoon.woody.formmodel; 17 18 26 public abstract class RepeaterActionDefinition extends ActionDefinition { 27 28 private String name = null; 29 30 33 public RepeaterActionDefinition() { 34 } 35 36 40 public RepeaterActionDefinition(String repeaterName) { 41 this.name = repeaterName; 42 } 43 44 public Widget createInstance() { 45 return new RepeaterAction(this); 46 } 47 48 55 public String getRepeaterName() { 56 return this.name; 57 } 58 59 } 60 | Popular Tags |