Skip to main content
summaryrefslogtreecommitdiffstats
blob: abb7bc09368b58818af6afc155c28ed0c25ee236 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/

package org.eclipse.osee.framework.jini;

import org.eclipse.core.runtime.Plugin;
import org.eclipse.osee.framework.jini.discovery.EclipseJiniClassloader;
import org.eclipse.osee.framework.jini.discovery.ServiceDataStore;
import org.osgi.framework.BundleContext;

/**
 * The main plug-in class to be used in the desktop.
 */
public class JiniPlugin extends Plugin {

   private static JiniPlugin plugin;

   /**
    * The constructor.
    */
   public JiniPlugin() {
      JiniPlugin.plugin = this;
      try {
         JiniClassServer.getInstance();
      } catch (Exception e) {
         e.printStackTrace();
      }
   }

   /**
    * This method is called when the plug-in is stopped
    */
   @Override
   public void stop(BundleContext context) throws Exception {
      super.stop(context);
      plugin = null;
      JiniClassServer.stopServer();
   }

   /**
    * Returns the shared instance.
    */
   public static JiniPlugin getInstance() {
      return plugin;
   }

   public void earlyStartup() {
      // so that the jini stuff gets started up
      ServiceDataStore.getEclipseInstance(EclipseJiniClassloader.getInstance());
      System.out.println("JiniPlugin early startup");
   }

}

Back to the top