public boolean canCreateProject(KnowledgeBaseFactory factory, boolean useExistingSources) {
return factory.getClass().getName().contains(".owl.") && useExistingSources;
}
public WizardPage createCreateProjectWizardPage(CreateProjectWizard wizard, boolean useExistingSources) {
WizardPage page = null;
if (useExistingSources) {
page = new ClamlFilesWizardPage(wizard, this);
}
return page;
}