1 11 package org.eclipse.update.configuration; 12 13 import java.util.Date ; 14 15 import org.eclipse.core.runtime.*; 16 import org.eclipse.update.core.*; 17 18 30 public interface ISessionDelta extends IAdaptable { 31 32 43 public int ENABLE = 1; 44 45 56 public int DISABLE = 2; 57 58 70 public IFeatureReference[] getFeatureReferences(); 71 72 84 public Date getDate(); 85 86 101 public int getType(); 102 103 118 public void process(IProgressMonitor progressMonitor) throws CoreException; 119 120 135 public void process(IFeatureReference [] selected, IProgressMonitor monitor) throws CoreException; 136 137 148 public void delete(); 149 } 150 | Popular Tags |