1 15 package org.apache.tapestry.wml; 16 17 import org.apache.tapestry.IMarkupWriter; 18 import org.apache.tapestry.IRequestCycle; 19 import org.apache.tapestry.form.Form; 20 import org.apache.tapestry.form.FormSupport; 21 22 29 30 public abstract class Go extends Form 31 { 32 35 protected void emitEventHandlers(IMarkupWriter writer, IRequestCycle cycle) 36 { 37 } 38 39 protected String constructFormNameForActionService(String actionId) 40 { 41 return "Go" + actionId; 42 } 43 44 protected FormSupport newFormSupport(IMarkupWriter writer, IRequestCycle cycle) 45 { 46 return new GoFormSupportImpl(writer, cycle, this); 47 } 48 } | Popular Tags |