/*
 * @(#)InputSelectTag.java
 *
 * Copyright 2000-2002 by Oracle Corporation,
 * 500 Oracle Parkway, Redwood Shores, California, 94065, U.S.A.
 * All rights reserved.
 *
 * This software is the confidential and proprietary information
 * of Oracle Corporation.
 */

package oracle.jbo.html.jsp.datatags;


public class InputSelectTag extends InputSelectBase
{
   /**
    * Constructor
    */
   public InputSelectTag()
   {
      super();
      sControlType = "COMBOBOX";
   }

   public void setMultiple(String sValue)
   {
      if(Utils.isTrue(sValue))
      {
         sControlType = "LISTBOX";
      }
      else
      {
         sControlType = "COMBOBOX";
      }
   }

   public void release()
   {
      super.release();
      sControlType = "COMBOBOX";
   }
}

 