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
006package fc.web.forms;
007
008import javax.servlet.*;
009import javax.servlet.http.*;
010import java.io.*;
011import java.util.*;
012import java.util.regex.*;
013import java.util.logging.*;
014
015import fc.jdbc.*;
016import fc.io.*;
017import fc.util.*;
018
019/** 
020Represents a grouped set of check boxes.
021
022@author hursh jain
023**/
024public class CheckboxGroup extends ChoiceGroup
025{
026/** {@inheritDoc} **/
027public CheckboxGroup(String name)
028  {
029  super(name);
030  }
031  
032public Field.Type getType() {
033  return Field.Type.CHECKBOX;
034  }
035
036}