仮定する:
public class Window
{
public void Dialog ()
{
JDialog JD = new JDialog();
// add pictures/labels onto JDialog
}
}
と:
public class Main
{
//Suppose here is a GUI with a button that if clicked called the Dialog method
}
私の問題は、Eclipse でメソッドにアクセスする方法がわからないことです。メソッドを呼び出すために Window クラスにコンストラクターを作成しましたが、うまくいきませんでした。
Window instance1 ; // create instance of class public Window (Window temp){ instance1 = temp; }
///On Main Class
Dialog temp1 = new Dialog (temp1);
temp1.OpenDialog (); // calls method from other class
コンストラクターの呼び出しに関する構文の問題は知っていますが、何が問題なのかわかりません。