1 18 19 package org.osgi.service.startlevel; 20 21 import org.osgi.framework.Bundle; 22 23 73 public interface StartLevel { 74 83 public int getStartLevel(); 84 85 147 public void setStartLevel(int startlevel); 148 149 157 public int getBundleStartLevel(Bundle bundle); 158 159 192 public void setBundleStartLevel(Bundle bundle, int startlevel); 193 194 201 public int getInitialBundleStartLevel(); 202 203 230 public void setInitialBundleStartLevel(int startlevel); 231 232 247 public boolean isBundlePersistentlyStarted(Bundle bundle); 248 249 265 public boolean isBundleActivationPolicyUsed(Bundle bundle); 266 } 267 | Popular Tags |