[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.tools.emf] Re: EMF Model Creation Wizard broken / no finish button
|
- From: Ed Merks <Ed.Merks@xxxxxxxxx>
- Date: Wed, 16 Sep 2009 10:06:05 -0400
- Newsgroups: eclipse.tools.emf
- Organization: EclipseCorner
- User-agent: Thunderbird 2.0.0.23 (Windows/20090812)
Fabrice,
This seems to imply that the modify listener is not being called:
initialObjectField.addModifyListener(validator);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ModifyListener validator =
new ModifyListener()
{
public void modifyText(ModifyEvent e)
{
setPageComplete(validatePage());
}
}
Can you check that?
fabrice wrote:
Hi Ed,
When there is only one EClass in the package, that class is
automatically selected by default, and the finish button is enabled.
If there is more than one class, no EClass is selected by default, and
whichever I select in the menu, the finish button stays disabled.
Fabrice