
org.bimserver.plugins.PluginBundle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pluginbase Show documentation
Show all versions of pluginbase Show documentation
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