Java Doc for Choice.java in  » 6.0-JDK-Modules » j2me » java » awt » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » java.awt 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.Component
      java.awt.Choice

Choice
public class Choice extends Component implements ItemSelectable(Code)
The Choice class presents a pop-up menu of choices. The current choice is displayed as the title of the menu.

The following code example produces a pop-up menu:


 Choice ColorChooser = new Choice();
 ColorChooser.add("Green");
 ColorChooser.add("Red");
 ColorChooser.add("Blue");
 

After this choice menu has been added to a panel, it appears as follows in its normal state:

In the picture, "Green" is the current choice. Pushing the mouse button down on the object causes a menu to appear with the current choice highlighted.


version:
   1.49 08/10/01
author:
   Sami Shaio
author:
   Arthur van Hoff
since:
   JDK1.0



Field Summary
transient  ItemListeneritemListener
    
 VectorpItems
     The items for the Choice.
 intselectedIndex
     The index of the current choice for this Choice.

Constructor Summary
public  Choice()
     Creates a new choice menu.

Method Summary
public  voidadd(String item)
     Adds an item to this Choice menu.
public synchronized  voidaddItem(String item)
     Adds an item to this Choice.
public synchronized  voidaddItemListener(ItemListener l)
     Adds the specified item listener to receive item events from this Choice menu.
public  voidaddNotify()
     Creates the Choice's peer.
 StringconstructComponentName()
     Construct a name for this component.
public  intcountItems()
    
 booleaneventEnabled(AWTEvent e)
    
public  StringgetItem(int index)
     Gets the string at the specified index in this Choice menu.
public  intgetItemCount()
     Returns the number of items in this Choice menu.
public synchronized  ItemListener[]getItemListeners()
     Returns an array of all the item listeners registered on this choice.
public  intgetSelectedIndex()
     Returns the index of the currently selected item.
public synchronized  StringgetSelectedItem()
     Gets a representation of the current choice as a string.
public synchronized  Object[]getSelectedObjects()
     Returns an array (length 1) containing the currently selected item.
public synchronized  voidinsert(String item, int index)
     Inserts the item into this choice at the specified position.
protected  StringparamString()
     Returns the parameter string representing the state of this choice menu.
protected  voidprocessEvent(AWTEvent e)
     Processes events on this choice.
protected  voidprocessItemEvent(ItemEvent e)
     Processes item events occurring on this Choice menu by dispatching them to any registered ItemListener objects.

This method is not called unless item events are enabled for this component.

public synchronized  voidremove(String item)
     Remove the first occurrence of item from the Choice menu.
public synchronized  voidremove(int position)
     Removes an item from the choice menu at the specified position.
public synchronized  voidremoveAll()
     Removes all items from the choice menu.
public synchronized  voidremoveItemListener(ItemListener l)
     Removes the specified item listener so that it no longer receives item events from this Choice menu.
public  voidselect(int pos)
     Sets the selected item in this Choice menu to be the item at the specified position.
public synchronized  voidselect(String str)
     Sets the selected item in this Choice menu to be the item whose name is equal to the specified string.

Field Detail
itemListener
transient ItemListener itemListener(Code)



pItems
Vector pItems(Code)
The items for the Choice.



selectedIndex
int selectedIndex(Code)
The index of the current choice for this Choice.




Constructor Detail
Choice
public Choice()(Code)
Creates a new choice menu. The menu initially has no items in it.

By default, the first item added to the choice menu becomes the selected item, until a different selection is made by the user by calling one of the select methods.
See Also:   java.awt.Choice.select(int)
See Also:   java.awt.Choice.select(java.lang.String)
since:
   JDK1.0





Method Detail
add
public void add(String item)(Code)
Adds an item to this Choice menu.
Parameters:
  item - the item to be added
exception:
  NullPointerException - if the item's value is null.
since:
   JDK1.1



addItem
public synchronized void addItem(String item)(Code)
Adds an item to this Choice.
Parameters:
  item - the item to be added
exception:
  NullPointerException - If the item's value is equal to null.



addItemListener
public synchronized void addItemListener(ItemListener l)(Code)
Adds the specified item listener to receive item events from this Choice menu.
Parameters:
  l - the item listener.
See Also:   java.awt.event.ItemEvent
See Also:   java.awt.event.ItemListener
See Also:   java.awt.Choice.removeItemListener
since:
   JDK1.1



addNotify
public void addNotify()(Code)
Creates the Choice's peer. This peer allows us to change the look of the Choice without changing its functionality.
See Also:   java.awt.Toolkit.createChoice(java.awt.Choice)
See Also:   java.awt.Component.getToolkit
since:
   JDK1.0



constructComponentName
String constructComponentName()(Code)
Construct a name for this component. Called by getName() when the name is null.



countItems
public int countItems()(Code)



eventEnabled
boolean eventEnabled(AWTEvent e)(Code)



getItem
public String getItem(int index)(Code)
Gets the string at the specified index in this Choice menu.
Parameters:
  index - the index at which to begin.
See Also:   java.awt.Choice.getItemCount
since:
   JDK1.0



getItemCount
public int getItemCount()(Code)
Returns the number of items in this Choice menu.
See Also:   java.awt.Choice.getItem
since:
   JDK1.1



getItemListeners
public synchronized ItemListener[] getItemListeners()(Code)
Returns an array of all the item listeners registered on this choice. all of this choice's ItemListenersor an empty array if no itemlisteners are currently registered
See Also:   Choice.addItemListener
See Also:   Choice.removeItemListener
See Also:   java.awt.event.ItemEvent
See Also:   java.awt.event.ItemListener
since:
   1.4



getSelectedIndex
public int getSelectedIndex()(Code)
Returns the index of the currently selected item.
See Also:   Choice.getSelectedItem



getSelectedItem
public synchronized String getSelectedItem()(Code)
Gets a representation of the current choice as a string. a string representation of the currentlyselected item in this choice menu.
See Also:   java.awt.Choice.getSelectedIndex
since:
   JDK1.0



getSelectedObjects
public synchronized Object[] getSelectedObjects()(Code)
Returns an array (length 1) containing the currently selected item. If this choice has no items, returns null.
See Also:   ItemSelectable



insert
public synchronized void insert(String item, int index)(Code)
Inserts the item into this choice at the specified position.
Parameters:
  item - the item to be inserted
Parameters:
  index - the position at which the item should be inserted
exception:
  IllegalArgumentException - if index is less than 0.



paramString
protected String paramString()(Code)
Returns the parameter string representing the state of this choice menu. This string is useful for debugging. the parameter string of this Choice menu.
since:
   JDK1.0



processEvent
protected void processEvent(AWTEvent e)(Code)
Processes events on this choice. If the event is an instance of ItemEvent, it invokes the processItemEvent method. Otherwise, it calls its superclass's processEvent method.
Parameters:
  e - the event.
See Also:   java.awt.event.ItemEvent
See Also:   java.awt.Choice.processItemEvent
since:
   JDK1.1



processItemEvent
protected void processItemEvent(ItemEvent e)(Code)
Processes item events occurring on this Choice menu by dispatching them to any registered ItemListener objects.

This method is not called unless item events are enabled for this component. Item events are enabled when one of the following occurs:

  • An ItemListener object is registered via addItemListener.
  • Item events are enabled via enableEvents.

Parameters:
  e - the item event.
See Also:   java.awt.event.ItemEvent
See Also:   java.awt.event.ItemListener
See Also:   java.awt.Choice.addItemListener
See Also:   java.awt.Component.enableEvents
since:
   JDK1.1



remove
public synchronized void remove(String item)(Code)
Remove the first occurrence of item from the Choice menu.
Parameters:
  item - the item to remove from this Choice menu.
exception:
  IllegalArgumentException - if the item doesn'texist in the choice menu.
since:
   JDK1.1



remove
public synchronized void remove(int position)(Code)
Removes an item from the choice menu at the specified position.
Parameters:
  position - the position of the item.
since:
   JDK1.1



removeAll
public synchronized void removeAll()(Code)
Removes all items from the choice menu.
See Also:   java.awt.Choice.remove
since:
   JDK1.1



removeItemListener
public synchronized void removeItemListener(ItemListener l)(Code)
Removes the specified item listener so that it no longer receives item events from this Choice menu.
Parameters:
  l - the item listener.
See Also:   java.awt.event.ItemEvent
See Also:   java.awt.event.ItemListener
See Also:   java.awt.Choice.addItemListener
since:
   JDK1.1



select
public void select(int pos)(Code)
Sets the selected item in this Choice menu to be the item at the specified position.
Parameters:
  pos - the positon of the selected item.
exception:
  IllegalArgumentException - if the specifiedposition is invalid.
See Also:   java.awt.Choice.getSelectedItem
See Also:   java.awt.Choice.getSelectedIndex
since:
   JDK1.0



select
public synchronized void select(String str)(Code)
Sets the selected item in this Choice menu to be the item whose name is equal to the specified string. If more than one item matches (is equal to) the specified string, the one with the smallest index is selected.
Parameters:
  str - the specified string
See Also:   java.awt.Choice.getSelectedItem
See Also:   java.awt.Choice.getSelectedIndex
since:
   JDK1.0



Fields inherited from java.awt.Component
final public static float BOTTOM_ALIGNMENT(Code)(Java Doc)
final public static float CENTER_ALIGNMENT(Code)(Java Doc)
final public static float LEFT_ALIGNMENT(Code)(Java Doc)
final static Object LOCK(Code)(Java Doc)
final public static float RIGHT_ALIGNMENT(Code)(Java Doc)
final public static float TOP_ALIGNMENT(Code)(Java Doc)
final static String actionListenerK(Code)(Java Doc)
final static String adjustmentListenerK(Code)(Java Doc)
Color background(Code)(Java Doc)
transient ComponentListener componentListener(Code)(Java Doc)
final static String componentListenerK(Code)(Java Doc)
final static String containerListenerK(Code)(Java Doc)
Cursor cursor(Code)(Java Doc)
final static boolean defaultNewEventsOnly(Code)(Java Doc)
transient Component delegate(Code)(Java Doc)
transient Component delegateSource(Code)(Java Doc)
boolean enabled(Code)(Java Doc)
long eventMask(Code)(Java Doc)
transient FocusListener focusListener(Code)(Java Doc)
final static String focusListenerK(Code)(Java Doc)
Font font(Code)(Java Doc)
Color foreground(Code)(Java Doc)
int height(Code)(Java Doc)
static int incRate(Code)(Java Doc)
static boolean isInc(Code)(Java Doc)
final static String itemListenerK(Code)(Java Doc)
transient KeyListener keyListener(Code)(Java Doc)
final static String keyListenerK(Code)(Java Doc)
Locale locale(Code)(Java Doc)
Dimension minSize(Code)(Java Doc)
transient MouseListener mouseListener(Code)(Java Doc)
final static String mouseListenerK(Code)(Java Doc)
transient MouseMotionListener mouseMotionListener(Code)(Java Doc)
final static String mouseMotionListenerK(Code)(Java Doc)
boolean newEventsOnly(Code)(Java Doc)
transient Container parent(Code)(Java Doc)
Vector popups(Code)(Java Doc)
Dimension prefSize(Code)(Java Doc)
final static String textListenerK(Code)(Java Doc)
static Timer updateTimer(Code)(Java Doc)
boolean valid(Code)(Java Doc)
boolean visible(Code)(Java Doc)
int width(Code)(Java Doc)
transient RuntimeException windowClosingException(Code)(Java Doc)
final static String windowListenerK(Code)(Java Doc)
int x(Code)(Java Doc)
transient ComponentXWindow xwindow(Code)(Java Doc)
int y(Code)(Java Doc)

Methods inherited from java.awt.Component
public boolean action(Event evt, Object what)(Code)(Java Doc)
public synchronized void add(PopupMenu popup)(Code)(Java Doc)
public synchronized void addComponentListener(ComponentListener l)(Code)(Java Doc)
public synchronized void addFocusListener(FocusListener l)(Code)(Java Doc)
public synchronized void addKeyListener(KeyListener l)(Code)(Java Doc)
public synchronized void addMouseListener(MouseListener l)(Code)(Java Doc)
public synchronized void addMouseMotionListener(MouseMotionListener l)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
boolean areInputMethodsEnabled()(Code)(Java Doc)
public Rectangle bounds()(Code)(Java Doc)
final void checkEnableNewEventsOnly(Object listener)(Code)(Java Doc)
public int checkImage(Image image, ImageObserver observer)(Code)(Java Doc)
public int checkImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc)
protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent)(Code)(Java Doc)
String constructComponentName()(Code)(Java Doc)
public boolean contains(int x, int y)(Code)(Java Doc)
public boolean contains(Point p)(Code)(Java Doc)
public Image createImage(ImageProducer producer)(Code)(Java Doc)
public Image createImage(int width, int height)(Code)(Java Doc)
ComponentXWindow createXWindow()(Code)(Java Doc)
public void deliverEvent(Event e)(Code)(Java Doc)
public void disable()(Code)(Java Doc)
final protected void disableEvents(long eventsToDisable)(Code)(Java Doc)
final public void dispatchEvent(AWTEvent e)(Code)(Java Doc)
void dispatchEventImpl(AWTEvent e)(Code)(Java Doc)
public void doLayout()(Code)(Java Doc)
public void enable()(Code)(Java Doc)
public void enable(boolean b)(Code)(Java Doc)
final protected synchronized void enableEvents(long eventsToEnable)(Code)(Java Doc)
boolean eventEnabled(AWTEvent e)(Code)(Java Doc)
Component findFocusDelegate(Container container)(Code)(Java Doc)
public float getAlignmentX()(Code)(Java Doc)
public float getAlignmentY()(Code)(Java Doc)
public Color getBackground()(Code)(Java Doc)
public Rectangle getBounds()(Code)(Java Doc)
public ColorModel getColorModel()(Code)(Java Doc)
public Component getComponentAt(int x, int y)(Code)(Java Doc)
public Component getComponentAt(Point p)(Code)(Java Doc)
public Cursor getCursor()(Code)(Java Doc)
Component getFocusDelegate()(Code)(Java Doc)
public Font getFont()(Code)(Java Doc)
Component getFontAndColorDelegate()(Code)(Java Doc)
public FontMetrics getFontMetrics(Font font)(Code)(Java Doc)
public Color getForeground()(Code)(Java Doc)
public Graphics getGraphics()(Code)(Java Doc)
InputContext getInputContext()(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Point getLocation()(Code)(Java Doc)
public Point getLocationOnScreen()(Code)(Java Doc)
public Dimension getMaximumSize()(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
Container getNativeContainer()(Code)(Java Doc)
public Container getParent()(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public Dimension getSize()(Code)(Java Doc)
public Toolkit getToolkit()(Code)(Java Doc)
final public Object getTreeLock()(Code)(Java Doc)
public boolean gotFocus(Event evt, Object what)(Code)(Java Doc)
public boolean handleEvent(Event evt)(Code)(Java Doc)
public void hide()(Code)(Java Doc)
public boolean imageUpdate(Image img, int flags, int x, int y, int w, int h)(Code)(Java Doc)
public boolean inside(int x, int y)(Code)(Java Doc)
public void invalidate()(Code)(Java Doc)
static void invokeAndWait(Runnable runnable)(Code)(Java Doc)
public boolean isDisplayable()(Code)(Java Doc)
public boolean isEnabled()(Code)(Java Doc)
public boolean isFocusTraversable()(Code)(Java Doc)
public boolean isLightweight()(Code)(Java Doc)
boolean isLightweightWhenDisplayable()(Code)(Java Doc)
public boolean isOpaque()(Code)(Java Doc)
public boolean isShowing()(Code)(Java Doc)
public boolean isValid()(Code)(Java Doc)
public boolean isVisible()(Code)(Java Doc)
public boolean keyDown(Event evt, int key)(Code)(Java Doc)
public boolean keyUp(Event evt, int key)(Code)(Java Doc)
public void layout()(Code)(Java Doc)
void lightweightPrint(Graphics g)(Code)(Java Doc)
public void list()(Code)(Java Doc)
public void list(PrintStream out)(Code)(Java Doc)
public void list(PrintStream out, int indent)(Code)(Java Doc)
public void list(PrintWriter out)(Code)(Java Doc)
public void list(PrintWriter out, int indent)(Code)(Java Doc)
public Component locate(int x, int y)(Code)(Java Doc)
public Point location()(Code)(Java Doc)
public boolean lostFocus(Event evt, Object what)(Code)(Java Doc)
public Dimension minimumSize()(Code)(Java Doc)
public boolean mouseDown(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseDrag(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseEnter(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseExit(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseMove(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseUp(Event evt, int x, int y)(Code)(Java Doc)
public void move(int x, int y)(Code)(Java Doc)
public void nextFocus()(Code)(Java Doc)
public void paint(Graphics g)(Code)(Java Doc)
public void paintAll(Graphics g)(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public boolean postEvent(Event e)(Code)(Java Doc)
public Dimension preferredSize()(Code)(Java Doc)
public boolean prepareImage(Image image, ImageObserver observer)(Code)(Java Doc)
public boolean prepareImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc)
public void print(Graphics g)(Code)(Java Doc)
public void printAll(Graphics g)(Code)(Java Doc)
protected void processComponentEvent(ComponentEvent e)(Code)(Java Doc)
protected void processEvent(AWTEvent e)(Code)(Java Doc)
protected void processFocusEvent(FocusEvent e)(Code)(Java Doc)
protected void processKeyEvent(KeyEvent e)(Code)(Java Doc)
protected void processMouseEvent(MouseEvent e)(Code)(Java Doc)
protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc)
public synchronized void remove(MenuComponent popup)(Code)(Java Doc)
public synchronized void removeComponentListener(ComponentListener l)(Code)(Java Doc)
public synchronized void removeFocusListener(FocusListener l)(Code)(Java Doc)
public synchronized void removeKeyListener(KeyListener l)(Code)(Java Doc)
public synchronized void removeMouseListener(MouseListener l)(Code)(Java Doc)
public synchronized void removeMouseMotionListener(MouseMotionListener l)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public void repaint()(Code)(Java Doc)
public void repaint(long tm)(Code)(Java Doc)
public void repaint(int x, int y, int width, int height)(Code)(Java Doc)
public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc)
public void requestFocus()(Code)(Java Doc)
public void reshape(int x, int y, int width, int height)(Code)(Java Doc)
public void resize(int width, int height)(Code)(Java Doc)
public void resize(Dimension d)(Code)(Java Doc)
public void setBackground(Color c)(Code)(Java Doc)
public void setBounds(int x, int y, int width, int height)(Code)(Java Doc)
public void setBounds(Rectangle r)(Code)(Java Doc)
public synchronized void setCursor(Cursor cursor)(Code)(Java Doc)
public void setEnabled(boolean b)(Code)(Java Doc)
public void setFont(Font f)(Code)(Java Doc)
public void setForeground(Color c)(Code)(Java Doc)
public void setLocale(Locale l)(Code)(Java Doc)
public void setLocation(int x, int y)(Code)(Java Doc)
public void setLocation(Point p)(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void setSize(int width, int height)(Code)(Java Doc)
public void setSize(Dimension d)(Code)(Java Doc)
public void setVisible(boolean b)(Code)(Java Doc)
public void show()(Code)(Java Doc)
public void show(boolean b)(Code)(Java Doc)
public Dimension size()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void transferFocus()(Code)(Java Doc)
public void update(Graphics g)(Code)(Java Doc)
public void validate()(Code)(Java Doc)

Methods inherited from java.lang.Object
public boolean equals(Object obj)(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.