1 11 package org.eclipse.osgi.framework.adaptor; 12 13 import org.osgi.framework.Bundle; 14 15 32 public interface BundleWatcher { 33 37 public static final int START_INSTALLING = 0x0001; 38 42 public static final int END_INSTALLING = 0x0002; 43 47 public static final int START_ACTIVATION = 0x0004; 48 52 public static final int END_ACTIVATION = 0x0008; 53 57 public static final int START_DEACTIVATION = 0x0010; 58 62 public static final int END_DEACTIVATION = 0x0020; 63 67 public static final int START_UNINSTALLING = 0x0040; 68 72 public static final int END_UNINSTALLING = 0x0080; 73 74 89 public void watchBundle(Bundle bundle, int type); 90 } 91 | Popular Tags |