[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.swt] JFace TitleAreaDialog

Hello erverybody,

I have a "MyDialog extends TitleAreDialog" class and added there two input 
fields.

When I press "OK", I should get the values of the two input buttons with:

if (myDialog.open() == IDialogConstants.OK_ID){

   String benutzer = anmeldeDialog.text_Benutzername.getText();
   String passwort = anmeldeDialog.text_Passwort.getText();

}

But the compiler says that the "widget is disposed" in line "String benu..."

Which method and how do I have to overwrite so that the widget is not 
disposed before I get the two values.

Thank you in advance...