001 // Copyright (c) 2001 Hursh Jain (http://www.mollypages.org) 002 // The Molly framework is freely distributable under the terms of an 003 // MIT-style license. For details, see the molly pages web site at: 004 // http://www.mollypages.org/. Use, modify, have fun ! 005 006 package fc.web.forms; 007 008 import javax.servlet.*; 009 import javax.servlet.http.*; 010 import java.io.*; 011 import java.util.*; 012 import java.util.regex.*; 013 import java.util.logging.*; 014 015 import fc.jdbc.*; 016 import fc.io.*; 017 import fc.util.*; 018 019 /** 020 Represents a grouped set of check boxes. 021 022 @author hursh jain 023 **/ 024 public class CheckboxGroup extends ChoiceGroup 025 { 026 /** {@inheritDoc} **/ 027 public CheckboxGroup(String name) 028 { 029 super(name); 030 } 031 032 public Field.Type getType() { 033 return Field.Type.CHECKBOX; 034 } 035 036 }