1 11 package org.eclipse.osgi.service.resolver; 12 13 17 public interface GenericSpecification extends VersionConstraint { 18 22 public static final int RESOLUTION_OPTIONAL = 0x01; 23 27 public static final int RESOLUTION_MULTIPLE = 0x02; 28 29 33 public String getMatchingFilter(); 34 35 39 public String getType(); 40 41 48 public int getResolution(); 49 50 55 public GenericDescription[] getSuppliers(); 56 } 57 | Popular Tags |