AWT CheckBox類


介紹

CheckBox控制元件是用來開啟選項(true)或關閉(false)。每個核取方塊標籤代表的核取方塊做什麼。通過點選它可以改變一個核取方塊的狀態。

類的宣告

以下是宣告的java.awt.Checkbox類:

public class Checkbox
   extends Component
      implements ItemSelectable,Accessible

類別建構函式

S.N. 建構函式與說明
1 Checkbox() 
Creates a check box with an empty string for its label.
2 Checkbox(String label) 
Creates a check box with the specified label.
3 Checkbox(String label, boolean state) 
Creates a check box with the specified label and sets the specified state.
4 Checkbox(String label, boolean state, CheckboxGroup group) 
Constructs a Checkbox with the specified label, set to the specified state, and in the specified check box group.
5 Checkbox(String label, CheckboxGroup group, boolean state) 
Creates a check box with the specified label, in the specified check box group, and set to the specified state.

類方法

S.N. 方法和說明
1 void addItemListener(ItemListener l) 
Adds the specified item listener to receive item events from this check box.
2 void addNotify() 
Creates the peer of the Checkbox.
3 AccessibleContext getAccessibleContext() 
Gets the AccessibleContext associated with this Checkbox.
4 CheckboxGroup getCheckboxGroup() 
Determines this check box's group.
5 ItemListener[] getItemListeners() 
Returns an array of all the item listeners registered on this checkbox.
6 String getLabel() 
Gets the label of this check box.
7 <T extends EventListener>T[] getListeners(Class<T> listenerType) 
Returns an array of all the objects currently registered as FooListeners upon this Checkbox.
8 Object[] getSelectedObjects() 
Returns an array (length 1) containing the checkbox label or null if the checkbox is not selected.
9 boolean getState() 
Determines whether this check box is in the on or off state.
10 protected String paramString() 
Returns a string representing the state of this Checkbox.
11 protected void processEvent(AWTEvent e) 
Processes events on this check box.
12 protected void processItemEvent(ItemEvent e) 
Processes item events occurring on this check box by dispatching them to any registered ItemListener objects.
13 void removeItemListener(ItemListener l) 
Removes the specified item listener so that the item listener no longer receives item events from this check box.
14 void setCheckboxGroup(CheckboxGroup g) 
Sets this check box's group to the specified check box group.
15 void setLabel(String label) 
Sets this check box's label to be the string argument.
16 void setState(boolean state) 
Sets the state of this check box to the specified state.

繼承的方法

這個類繼承的方法從以下類:

  • java.awt.Component

  • java.lang.Object

CheckBox的範例

說在您選擇使用的編輯器建立以下java程式 D:/ > AWT > com > tw511.com > gui >

AwtControlDemo.java
package com.yiibai.gui;

import java.awt.*;
import java.awt.event.*;

public class AwtControlDemo {

   private Frame mainFrame;
   private Label headerLabel;
   private Label statusLabel;
   private Panel controlPanel;

   public AwtControlDemo(){
      prepareGUI();
   }

   public static void main(String[] args){
      AwtControlDemo  awtControlDemo = new AwtControlDemo();
      awtControlDemo.showCheckBoxDemo();
   }

   private void prepareGUI(){
      mainFrame = new Frame("Java AWT Examples");
      mainFrame.setSize(400,400);
      mainFrame.setLayout(new GridLayout(3, 1));
      mainFrame.addWindowListener(new WindowAdapter() {
         public void windowClosing(WindowEvent windowEvent){
            System.exit(0);
         }        
      });    
      headerLabel = new Label();
      headerLabel.setAlignment(Label.CENTER);
      statusLabel = new Label();        
      statusLabel.setAlignment(Label.CENTER);
      statusLabel.setSize(350,100);

      controlPanel = new Panel();
      controlPanel.setLayout(new FlowLayout());

      mainFrame.add(headerLabel);
      mainFrame.add(controlPanel);
      mainFrame.add(statusLabel);
      mainFrame.setVisible(true);  
   }

   private void showCheckBoxDemo(){

      headerLabel.setText("Control in action: CheckBox"); 

      Checkbox chkApple = new Checkbox("Apple");
      Checkbox chkMango = new Checkbox("Mango");
      Checkbox chkPeer = new Checkbox("Peer");


      chkApple.addItemListener(new ItemListener() {
         public void itemStateChanged(ItemEvent e) {             
            statusLabel.setText("Apple Checkbox: " 
            + (e.getStateChange()==1?"checked":"unchecked"));
         }
      });

      chkMango.addItemListener(new ItemListener() {
         public void itemStateChanged(ItemEvent e) {
            statusLabel.setText("Mango Checkbox: " 
            + (e.getStateChange()==1?"checked":"unchecked"));
         }
      });

      chkPeer.addItemListener(new ItemListener() {
         public void itemStateChanged(ItemEvent e) {
            statusLabel.setText("Peer Checkbox: " 
            + (e.getStateChange()==1?"checked":"unchecked"));
         }
      });

      controlPanel.add(chkApple);
      controlPanel.add(chkMango);
      controlPanel.add(chkPeer);       

      mainFrame.setVisible(true);  
   }
}

編譯程式,使用命令提示字元。到 D:/ > AWT 然後鍵入以下命令。

D:AWT>javac comyiibaiguiAwtControlDemo.java

如果沒有錯誤出現,這意味著編譯成功。使用下面的命令來執行程式。

D:AWT>java com.yiibai.gui.AwtControlDemo

驗證下面的輸出

AWT CheckBox