I want to display an error message, which appear in a wizard at the top of the wizard window (like Cannot create project content... message in the screenshot below).
According to what I found on the internets, I have to use the method setErrorMessage
to do this.
But it doesn't exist in my wizard class:
import org.eclipse.jface.wizard.Wizard;
public class MyWizard extends Wizard {
public MyWizard() {
super();
setErrorMessage("Error message"); // No such method
getContainer().getCurrentPage().setErrorMessage("Error message 2"); // This also doesn't exist
}
How can I set the error message of a wizard?
setErrorMessage
is a method inWizardPage
but it is not included in theIWizardPage
interface thatIWizardContainer.getCurrentPage
returns.It is usually your wizard page classes that set the error message - which they can do be calling
setErrorMessage(text)