Import of Ekit 0.9h
[old-projects.git] / ekit / com / hexidec / ekit / component / JComboBoxNoFocus.java
CommitLineData
c2da4d40
JL
1/*
2GNU Lesser General Public License
3
4JComboBoxNoFocus
6ce136da 5Copyright (C) 2000 Howard Kistler
c2da4d40
JL
6
7This library is free software; you can redistribute it and/or
8modify it under the terms of the GNU Lesser General Public
9License as published by the Free Software Foundation; either
10version 2.1 of the License, or (at your option) any later version.
11
12This library is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15Lesser General Public License for more details.
16
17You should have received a copy of the GNU Lesser General Public
18License along with this library; if not, write to the Free Software
19Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20*/
21
22package com.hexidec.ekit.component;
23
24import javax.swing.JComboBox;
25
26/** Class for providing a JComboBox that does not obtain focus
27 */
28public class JComboBoxNoFocus extends JComboBox
29{
30 public JComboBoxNoFocus() { super(); this.setRequestFocusEnabled(false); }
31
32 public boolean isFocusable()
33 {
34 return false;
35 }
36
37 // deprecated in 1.4 with isFocusable(), left in for 1.3 compatibility
38 public boolean isFocusTraversable()
39 {
40 return false;
41 }
42}