1 15 package org.apache.tapestry; 16 17 import org.apache.tapestry.valid.IValidationDelegate; 18 19 29 30 public interface IForm extends IAction, FormBehavior 31 { 32 33 39 40 public static final String ATTRIBUTE_NAME = TapestryUtils.FORM_ATTRIBUTE; 41 42 46 47 public void rewind(IMarkupWriter writer, IRequestCycle cycle); 48 49 55 56 public String getName(); 57 58 64 65 public IValidationDelegate getDelegate(); 66 67 72 public boolean isClientValidationEnabled(); 73 } | Popular Tags |