从外部类访问JFrame中的组件

时间:2013-05-15 12:50:27

标签: java swing user-interface jframe

我无法访问JFrame中的多个组件以使用其setText(“...”)方法。我的主要是一个单独的类,因为实际程序有许多窗口需要同时管理。

public GameWindow() {

    initialize();
    gameFrame.setVisible(true);
}

private void initialize() {     
    gameFrame = new JFrame();

JTextPane gameTextPane = new JTextPane();       // text pane to contain all game text
    gameTextPanel.add(gameTextPane);

这是我的主要内容:

public class GameMain {
    public static GameWindow gW = new GameWindow();
    //I have tried using the code below with various numbers, but the "setText()" method is never available
    gW.getGameFrame().getContentPane().getComponent(x);
}

我正在尝试从单独的类设置此文本,但我无法访问这些组件。 最终,最终的代码看起来应该是这样的:

public static void main(String[] args) {

    // make the GUI and initilize
    changeTheText();
}

public static void changeTheText() {
    [CODE TO ACCESS TEXTFIELD].setText("Hello World");
}

我尝试了很多不同的方法,但是我并没有真正理解它们中的任何一种,而且它们都不允许我访问我需要的方法。

2 个答案:

答案 0 :(得分:1)

setText(String text)课程中创建GameWindow方法。在该方法中,请在需要更改的组件上调用setText

答案 1 :(得分:1)

JTextPane的声明移出initialize方法,使其成为一个参数,以便您可以在课程中随时访问它。要使其可以从另一个类访问,您可以将其公开或添加set方法。像这样:

public class GameWindow {
    private JTextPane gameTextPane;
    ...
    private void initialize(){...}
    ...
    public void setText(String s) {
        gameTextPane.setText(s);
    }
}

要更改主要课程中的文字:

gW.setText("This is a cool text");