blob: 9c21f576e3720a622db4fab6c1ac5a28b691378f [file] [log] [blame]
package org.eclipse.opencert.lines.wizards;
import java.util.Map;
import org.eclipse.epf.ui.wizards.BaseWizardPage;
/**
* The abstract class for a Open Method Library wizard page.
*/
public abstract class WizardPage extends BaseWizardPage {
/**
* Creates a new instance.
*/
public WizardPage(String name) {
super(name);
}
/**
* Returns the library specific user selections.
*/
public abstract Map getSelections();
}