Package org.eclipse.tycho
Interface ArtifactKey
-
- All Known Implementing Classes:
DefaultArtifactKey
public interface ArtifactKey
Eclipse/OSGi artifact key. Contains the "coordinates" which identify an artifact in the Eclipse universe.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getId()
Eclipse/OSGi artifact id (bundle symbolic name, feature id, etc).String
getType()
Artifact type.String
getVersion()
Eclipse/OSGi artifact version.
-
-
-
Method Detail
-
getType
String getType()
Artifact type. Should be one of theArtifactType
constants.
-
getId
String getId()
Eclipse/OSGi artifact id (bundle symbolic name, feature id, etc). Can differ from Maven artifactId.
-
getVersion
String getVersion()
Eclipse/OSGi artifact version. Can differ from Maven version. For maven projects, this version corresponds to version specified in the project sources and does not reflect qualifier expansion.
-
-