All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.browsermob.proxy.jetty.html.Select Maven / Gradle / Ivy

There is a newer version: 2.0-beta-7
Show newest version
// ========================================================================
// $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.browsermob.proxy.jetty.html;

import org.apache.commons.logging.Log;
import org.browsermob.proxy.jetty.log.LogFactory;

import java.util.Enumeration;

/* -------------------------------------------------------------------- */
/** HTML select Block.
 * @see  org.browsermob.proxy.jetty.html.Block
 */
public class Select extends Block
{
    private static Log log = LogFactory.getLog(Select.class);

    /* ----------------------------------------------------------------- */
    /**
     * @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("

This function takes the result returned by a multi-select input * and produces an integer bit-set result of the selections made. It * assumes the values of the multi-select are all different powers of 2. */ public static int bitsetFormResult(String result) { int i; int from = 0; int res = 0; if(log.isDebugEnabled())log.debug("Result:"+result); String sres = null; while ((i = result.indexOf(' ', from)) != -1){ sres = result.substring(from, i); res = res | Integer.parseInt(sres); if(log.isDebugEnabled())log.debug("Match:"+sres+"+ res="+res); from = i+1; } sres = result.substring(from); res = res | Integer.parseInt(sres); if(log.isDebugEnabled())log.debug("Match:"+sres+", res="+res); return res; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy