Back to project page GenDbHandler.
The source code is released under:
Open Data Commons ? Public Domain Dedication & Licence (PDDL) Preamble The Open Data Commons ? Public Domain Dedication & Licence is a document intended to allow you to freely share, modify, an...
If you think the Android project GenDbHandler listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.cattaka.util.genparcelfunc; //from w w w .j a v a2s. c o m import org.eclipse.core.runtime.Plugin; import org.osgi.framework.BundleContext; /** * The main plugin class to be used in the desktop. */ public class GenParcelFuncPlugin extends Plugin { // The shared instance. private static GenParcelFuncPlugin plugin; // Resource bundle. // private ResourceBundle resourceBundle; /** * The constructor. */ public GenParcelFuncPlugin() { super(); plugin = this; } /** * This method is called upon plug-in activation */ public void start(BundleContext context) throws Exception { super.start(context); } /** * This method is called when the plug-in is stopped */ public void stop(BundleContext context) throws Exception { super.stop(context); plugin = null; // resourceBundle = null; } /** * Returns the shared instance. */ public static GenParcelFuncPlugin getDefault() { return plugin; } }