それが問題です..これは私がやりたいことの簡略化されたバージョンです:
public class Class{
public void main(){
Vector<Boolean> boo=new Vector<Boolean>;
System.out.println("Hi all");
ArrayList<String> a=new ArrayList<String>()
a.add("hi");
a.add("all");
JRadioButtonExample b=new JRadioButtonExample(2,a);
boo=b.getCheck();
for(Boolean b:boo){
System.out.println(b);
}
}
}
GUI の外部クラスを呼び出す必要があります。問題は、メインの system.out.println を JRadioButtonExample で実行されるアクションと同期できないことです。
JRadioButtonExample クラスは次のとおりです。
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.util.ArrayList;
import java.util.Vector;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
public class JRadiobuttonExample extends JFrame {
static JCheckBox b[];
static Vector<Boolean> check=new Vector<Boolean>();
JButton altervista=new JButton("RUN");
JButton selectall=new JButton("select all");
JButton deselectall=new JButton("deselect all");
static int num;
int i=0;
public static JCheckBox[] getB() {
return b;
}
public void setB(JCheckBox[] b2) {
b = b2;
}
public Vector<Boolean> getCheck() {
return check;
}
public void setCheck(Vector<Boolean> check2) {
check = check2;
}
public JRadiobuttonExample(int num, ArrayList<String> lbl) {
super("JRadiobuttonExample");
getContentPane().setLayout(new FlowLayout(FlowLayout.LEADING));
b= new JCheckBox[num];
for(i=0; i<num; i++) {
//creo i bottoni
b[i] = new JCheckBox(lbl.get(i));
getContentPane().add(b[i]);
}
//adding buttons
getContentPane().add(selectall);
getContentPane().add(deselectall);
getContentPane().add(altervista);
//adding listeners
AscoltatoreSel asc1=new AscoltatoreSel();
selectall.addActionListener(asc1);
setVisible(true);
AscoltatoreDesel asc2=new AscoltatoreDesel();
deselectall.addActionListener(asc2);
setVisible(true);
Ascoltatore asc=new Ascoltatore();
altervista.addActionListener(asc);
setVisible(true);
this.pack();
}
class Ascoltatore extends WindowAdapter implements ActionListener{
public void windowClosing(WindowEvent e){
System.exit(0);
}
public void actionPerformed(ActionEvent e){
if(e.getSource()==altervista){
setVisible(false);
boh(b);
}
}
}
class AscoltatoreSel extends WindowAdapter implements ActionListener{
public void windowClosing(WindowEvent e){
System.exit(0);
}
public void actionPerformed(ActionEvent e){
if(e.getSource()==selectall){
for(i=0; i<num; i++) {
b[i].setSelected(true);
setVisible(true);
}
}
}
}
class AscoltatoreDesel extends WindowAdapter implements ActionListener{
public void windowClosing(WindowEvent e){
System.exit(0);
}
public void actionPerformed(ActionEvent e){
if(e.getSource()==deselectall){
for(i=0; i<num; i++) {
b[i].setSelected(false);
}
}
}
}
public static void boh(JCheckBox[] b){
JCheckBox[] buttons=getB();
for (JCheckBox c:buttons){
check.add(c.isSelected());
}
}
}
前もって感謝します!
ps すべてのチェックボックスが選択されている場合は、boo=[true;true] を取得する必要があります