org.mortbay.html.Select Maven / Gradle / Ivy
// ========================================================================
// $Id: Select.java,v 1.7 2005/08/13 00:01:23 gregwilkins Exp $
// Copyright 1996-2004 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// ========================================================================
package org.mortbay.html;
import java.util.Enumeration;
/* -------------------------------------------------------------------- */
/** HTML select Block.
* @see org.mortbay.html.Block
*/
public class Select extends Block
{
/* ----------------------------------------------------------------- */
/**
* @param name Name of the form element
* @param multiple Whether multiple selections can be made
*/
public Select(String name,boolean multiple)
{
super("select");
attribute("name",name);
if (multiple)
attribute("multiple");
}
/* ----------------------------------------------------------------- */
/**
* @param name Name of the form element
* @param multiple Whether multiple selections can be made
*/
public Select(String name,boolean multiple, String[] options)
{
this(name,multiple);
for (int i=0; i");
super.add(o);
}
return this;
}
/* ----------------------------------------------------------------- */
/** Add option and specify if selected.
*/
public Select add(Object o, boolean selected)
{
if (selected)
super.add("