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

org.bimserver.plugins.PluginBundle Maven / Gradle / Ivy

Go to download

Base project for BIMserver plugin development. Some plugins mights also need the Shared library

The newest version!
package org.bimserver.plugins;

import java.io.Closeable;
import java.io.IOException;

import org.bimserver.interfaces.objects.SPluginBundle;
import org.bimserver.interfaces.objects.SPluginBundleVersion;

public interface PluginBundle extends Iterable {

	String getVersion();

	void add(PluginContext pluginContext);

	void close() throws IOException;

	SPluginBundleVersion getPluginBundleVersion();
	
	SPluginBundle getPluginBundle();

	void addCloseable(Closeable closeable);

	PluginContext getPluginContext(String identifier);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy