1 11 package org.eclipse.update.configuration; 12 13 import java.util.Date ; 14 15 import org.eclipse.core.runtime.*; 16 17 33 public interface IActivity extends IAdaptable { 34 35 46 public static final int ACTION_FEATURE_INSTALL = 1; 47 48 59 public static final int ACTION_FEATURE_REMOVE = 2; 60 61 72 public static final int ACTION_SITE_INSTALL = 3; 73 74 85 public static final int ACTION_SITE_REMOVE = 4; 86 87 98 public static final int ACTION_UNCONFIGURE = 5; 99 100 111 public static final int ACTION_CONFIGURE = 6; 112 113 124 public static final int ACTION_REVERT = 7; 125 126 138 public static final int ACTION_RECONCILIATION = 8; 139 140 151 public static final int ACTION_ADD_PRESERVED = 9; 152 153 164 public static final int STATUS_OK = 0; 165 166 177 public static final int STATUS_NOK = 1; 178 179 199 public int getAction(); 200 201 213 public String getLabel(); 214 215 227 public Date getDate(); 228 229 243 public int getStatus(); 244 245 258 public IInstallConfiguration getInstallConfiguration(); 259 } 260 | Popular Tags |