| java.lang.Object java.awt.Component java.awt.Checkbox
Checkbox | public class Checkbox extends Component implements ItemSelectable(Code) | | A check box is a graphical component that can be in either an
"on" (true ) or "off" (false ) state.
Clicking on a check box changes its state from
"on" to "off," or from "off" to "on."
The following code example creates a set of check boxes in
a grid layout:
setLayout(new GridLayout(3, 1));
add(new Checkbox("one", null, true));
add(new Checkbox("two"));
add(new Checkbox("three"));
This image depicts the check boxes and grid layout
created by this code example:
The button labeled one is in the "on" state, and the
other two are in the "off" state. In this example, which uses the
GridLayout class, the states of the three check
boxes are set independently.
Alternatively, several check boxes can be grouped together under
the control of a single object, using the
CheckboxGroup class.
In a check box group, at most one button can be in the "on"
state at any given time. Clicking on a check box to turn it on
forces any other check box in the same group that is on
into the "off" state.
version: 1.51 08/19/02 author: Sami Shaio See Also: java.awt.GridLayout See Also: java.awt.CheckboxGroup since: JDK1.0 |
Constructor Summary | |
public | Checkbox() Creates a check box with no label. | public | Checkbox(String label) Creates a check box with the specified label. | public | Checkbox(String label, boolean state) Creates a check box with the specified label. | public | Checkbox(String label, boolean state, CheckboxGroup group) Creates a check box with the specified label, in the specified
check box group, and set to the specified state. | public | Checkbox(String label, CheckboxGroup group, boolean state) Constructs a Checkbox with the specified label, set to the
specified state, and in the specified check box group. |
Method Summary | |
public synchronized void | addItemListener(ItemListener l) Adds the specified item listener to receive item events from
this check box. | public void | addNotify() Creates the peer of the Checkbox. | String | constructComponentName() Construct a name for this component. | boolean | eventEnabled(AWTEvent e) | public CheckboxGroup | getCheckboxGroup() Determines this check box's group. | public synchronized ItemListener[] | getItemListeners() Returns an array of all the item listeners
registered on this checkbox. | public String | getLabel() Gets the label of this check box. | public Object[] | getSelectedObjects() Returns the an array (length 1) containing the checkbox
label or null if the checkbox is not selected. | public boolean | getState() Determines whether this check box is in the "on" or "off" state. | protected String | paramString() Returns the parameter string representing the state of
this check box. | protected void | processEvent(AWTEvent e) Processes events on this check box. | protected void | processItemEvent(ItemEvent e) Processes item events occurring on this check box by
dispatching them to any registered
ItemListener objects.
This method is not called unless item events are
enabled for this component. | public synchronized void | removeItemListener(ItemListener l) Removes the specified item listener so that the item listener
no longer receives item events from this check box. | public void | setCheckboxGroup(CheckboxGroup g) Sets this check box's group to be the specified check box group. | public synchronized void | setLabel(String label) Sets this check box's label to be the string argument. | public void | setState(boolean state) Sets the state of this check box to the specified state. | void | setStateInternal(boolean state) Helper function for setState and CheckboxGroup.setSelectedCheckbox
Should remain package-private. |
state | boolean state(Code) | | The state of the Checkbox.
|
Checkbox | public Checkbox()(Code) | | Creates a check box with no label. The state of this
check box is set to "off," and it is not part of any
check box group.
since: JDK1.0 |
Checkbox | public Checkbox(String label)(Code) | | Creates a check box with the specified label. The state
of this check box is set to "off," and it is not part of
any check box group.
Parameters: label - a string label for this check box,or null for no label. since: JDK1.0 |
Checkbox | public Checkbox(String label, boolean state)(Code) | | Creates a check box with the specified label. The state
of this check box is as specified by the state
argument, and it is not part of any check box group.
Parameters: label - a string label for this check box,or null for no label. Parameters: state - the initial state of this check box. since: JDK1.0 |
Checkbox | public Checkbox(String label, boolean state, CheckboxGroup group)(Code) | | Creates a check box with the specified label, in the specified
check box group, and set to the specified state.
Parameters: label - a string label for this check box,or null for no label. Parameters: state - the initial state of this check box. Parameters: group - a check box group for this check box,or null for no group. since: JDK1.1 |
Checkbox | public Checkbox(String label, CheckboxGroup group, boolean state)(Code) | | Constructs a Checkbox with the specified label, set to the
specified state, and in the specified check box group.
|
constructComponentName | String constructComponentName()(Code) | | Construct a name for this component. Called by getName() when the
name is null.
|
getSelectedObjects | public Object[] getSelectedObjects()(Code) | | Returns the an array (length 1) containing the checkbox
label or null if the checkbox is not selected.
See Also: ItemSelectable |
getState | public boolean getState()(Code) | | Determines whether this check box is in the "on" or "off" state.
The boolean value true indicates the "on" state,
and false indicates the "off" state.
the state of this check box, as a boolean value. See Also: java.awt.Checkbox.setState since: JDK1.0 |
paramString | protected String paramString()(Code) | | Returns the parameter string representing the state of
this check box. This string is useful for debugging.
the parameter string of this check box. since: JDK1.0 |
processEvent | protected void processEvent(AWTEvent e)(Code) | | Processes events on this check box.
If the event is an instance of ItemEvent ,
this method 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.Checkbox.processItemEvent since: JDK1.1 |
setCheckboxGroup | public void setCheckboxGroup(CheckboxGroup g)(Code) | | Sets this check box's group to be the specified check box group.
If this check box is already in a different check box group,
it is first taken out of that group.
Parameters: g - the new check box group, or null to remove this check box from any check box group. See Also: java.awt.Checkbox.getCheckboxGroup since: JDK1.0 |
setLabel | public synchronized void setLabel(String label)(Code) | | Sets this check box's label to be the string argument.
Parameters: label - a string to set as the new label, ornull for no label. See Also: java.awt.Checkbox.getLabel since: JDK1.0 |
setState | public void setState(boolean state)(Code) | | Sets the state of this check box to the specified state.
The boolean value true indicates the "on" state,
and false indicates the "off" state.
Parameters: state - the boolean state of the check box. See Also: java.awt.Checkbox.getState since: JDK1.0 |
setStateInternal | void setStateInternal(boolean state)(Code) | | Helper function for setState and CheckboxGroup.setSelectedCheckbox
Should remain package-private.
|
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)
|
|
|