All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.protege.editor.owl.model.library.CatalogEntryManagerLoader Maven / Gradle / Ivy

Go to download

OWL ontology editing infrastructure used by the Protege desktop application.

The newest version!
package org.protege.editor.owl.model.library;

import org.eclipse.core.runtime.IExtension;
import org.protege.editor.core.plugin.AbstractPluginLoader;
import org.protege.editor.owl.ProtegeOWL;

public class CatalogEntryManagerLoader extends AbstractPluginLoader {
	
	public CatalogEntryManagerLoader() {
		super(ProtegeOWL.ID, CatalogEntryManagerPlugin.ID);
	}

	@Override
	protected CatalogEntryManagerPlugin createInstance(IExtension extension) {
		return new CatalogEntryManagerPlugin(extension);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy