1 11 package org.eclipse.osgi.service.resolver; 12 13 import org.osgi.framework.BundleException; 14 15 28 public interface PlatformAdmin { 29 30 38 public State getState(); 39 40 53 public State getState(boolean mutable); 54 55 66 public StateHelper getStateHelper(); 67 68 77 public void commit(State state) throws BundleException; 78 79 84 public Resolver getResolver(); 85 86 91 public StateObjectFactory getFactory(); 92 } 93 | Popular Tags |