1 11 12 package org.eclipse.osgi.framework.adaptor; 13 14 import org.osgi.framework.BundleException; 15 16 48 public abstract interface BundleOperation { 49 50 56 public abstract BundleData begin() throws BundleException; 57 58 66 public abstract void commit(boolean postpone) throws BundleException; 67 68 75 public abstract void undo() throws BundleException; 76 77 } 78 | Popular Tags |