KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > eclipse > HibernatePlugin


1 /*
2  * Created on 11-Dec-2004
3  *
4  */

5 package org.hibernate.eclipse;
6
7 import org.apache.commons.logging.Log;
8 import org.apache.commons.logging.LogFactory;
9 import org.eclipse.core.runtime.Plugin;
10 import org.osgi.framework.BundleContext;
11
12 /**
13  * @author max
14  *
15  */

16 public class HibernatePlugin extends Plugin {
17
18     public void start(BundleContext context) throws Exception JavaDoc {
19         super.start(context);
20         Log log = LogFactory.getLog(HibernatePlugin.class);
21         log.info("HibernatePlugin Started");
22     }
23 }
24
Popular Tags