* during the installation that need to be brought to the user's attention.
*
* @return the install step (not <code>null</code>)
*/
protected ShowWarningsStep installResultStep() {
final ShowWarningsStep step = new ShowWarningsStep(installer) {
public boolean canBack() {
return false;
}
};
step.setTitle("Warning");
step.setDescription("Installation program failed to perform the following operations:");
installer.add(step);
return step;
}