01: package org.jreform; 02: 03: /** 04: * A form containing inputs and optionally input groups. 05: * 06: * @author armandino (at) gmail.com 07: */ 08: public interface Form extends InputCollection { 09: /** 10: * Returns a group with the specified name. 11: */ 12: public Group getGroup(String name); 13: 14: }