1  /*
     2   Copyright aswing.org, see the LICENCE.txt.
     3  */
     4  
     5  import org.aswing.JComboBox;
     6  import org.aswing.plaf.ComponentUI;
     7  
     8  /**
     9   * Pluggable look and feel interface for ComboBox.
    10   * <p>
    11   * Subclass shoud override the three method of this class.
    12   * @author iiley
    13   */
    14  class org.aswing.plaf.ComboBoxUI extends ComponentUI {
    15  	
    16  	public function ComboBoxUI() {
    17  		super();
    18  	}
    19  
    20  	/**
    21       * Set the visiblity of the popup
    22       */
    23  	public function setPopupVisible(c:JComboBox, v:Boolean):Void{}
    24  	/** 
    25       * Determine the visibility of the popup
    26       */
    27  	public function isPopupVisible(c:JComboBox):Boolean{return false;}
    28  	/** 
    29       * Determine whether or not the combo box itself is traversable 
    30       */
    31  	public function isFocusTraversable(c:JComboBox):Boolean{return false;}
    32  	
    33  }
    34