Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 11 package org.eclipse.osgi.service.resolver; 12 13 18 public interface ResolverError { 19 24 public static final int MISSING_IMPORT_PACKAGE = 0x0001; 25 30 public static final int MISSING_REQUIRE_BUNDLE = 0x0002; 31 36 public static final int MISSING_FRAGMENT_HOST = 0x0004; 37 42 public static final int SINGLETON_SELECTION = 0x0008; 43 48 public static final int FRAGMENT_CONFLICT = 0x0010; 49 54 public static final int IMPORT_PACKAGE_USES_CONFLICT = 0x0020; 55 60 public static final int REQUIRE_BUNDLE_USES_CONFLICT = 0x0040; 61 67 public static final int IMPORT_PACKAGE_PERMISSION = 0x0080; 68 74 public static final int EXPORT_PACKAGE_PERMISSION = 0x0100; 75 81 public static final int REQUIRE_BUNDLE_PERMISSION = 0x0200; 82 88 public static final int PROVIDE_BUNDLE_PERMISSION = 0x0400; 89 95 public static final int HOST_BUNDLE_PERMISSION = 0x0800; 96 102 public static final int FRAGMENT_BUNDLE_PERMISSION = 0x1000; 103 108 public static final int PLATFORM_FILTER = 0x2000; 109 110 116 public static final int MISSING_EXECUTION_ENVIRONMENT = 0x4000; 117 118 122 public static final int MISSING_GENERIC_CAPABILITY = 0x8000; 123 124 128 public BundleDescription getBundle(); 129 130 134 public int getType(); 135 136 142 public String getData(); 143 144 150 public VersionConstraint getUnsatisfiedConstraint(); 151 } 152
| Popular Tags
|