1 11 package org.eclipse.update.core; 12 13 14 import org.eclipse.core.runtime.IAdaptable; 15 16 35 public interface IImport extends IAdaptable, IUpdateConstants, IPlatformEnvironment { 36 37 41 public static final int KIND_PLUGIN = 0; 42 43 47 public static final int KIND_FEATURE = 1; 48 49 55 public VersionedIdentifier getVersionedIdentifier(); 56 57 63 public int getRule(); 64 65 71 public int getIdRule(); 72 73 81 public int getKind(); 82 83 93 public boolean isPatch(); 94 } 95 | Popular Tags |