1 11 package org.eclipse.osgi.internal.resolver; 12 13 import org.eclipse.osgi.service.resolver.*; 14 import org.osgi.framework.BundleException; 15 16 public class SystemState extends StateImpl { 18 synchronized public boolean addBundle(BundleDescription description) { 19 return super.addBundle(description); 20 } 21 22 synchronized public boolean removeBundle(BundleDescription toRemove) { 23 return super.removeBundle(toRemove); 24 } 25 26 synchronized public boolean updateBundle(BundleDescription newDescription) { 27 return super.updateBundle(newDescription); 28 } 29 30 public StateDelta compare(State state) throws BundleException { 31 throw new UnsupportedOperationException (); 33 } 34 } 35 | Popular Tags |