1 21 22 package org.apache.derby.ui; 23 24 import org.eclipse.ui.plugin.AbstractUIPlugin; 25 import org.osgi.framework.BundleContext; 26 27 30 public class DerbyPlugin extends AbstractUIPlugin { 31 private static DerbyPlugin plugin; 33 34 35 38 public DerbyPlugin() { 39 super(); 40 plugin = this; 41 } 42 43 46 public void start(BundleContext context) throws Exception { 47 super.start(context); 48 } 49 50 53 public void stop(BundleContext context) throws Exception { 54 super.stop(context); 55 } 56 57 60 public static DerbyPlugin getDefault() { 61 return plugin; 62 } 63 64 65 } 66 | Popular Tags |