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

bndtools.jareditor.internal.Plugin Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version
package bndtools.jareditor.internal;

import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;

public class Plugin extends AbstractUIPlugin {

    public static final String PLUGIN_ID = "bndtools.jareditor";

    private static Plugin instance;

    @Override
    public void start(BundleContext context) throws Exception {
        instance = this;
        super.start(context);
    }

    @Override
    public void stop(BundleContext context) throws Exception {
        instance = null;
    }

    public static Plugin getDefault() {
        return instance;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy