Package org.java.plugin.registry
Interface ManifestInfo
-
- All Known Implementing Classes:
MockManifestInfo
public interface ManifestInfo
Manifest info holder interface.- Version:
- $Id: ManifestInfo.java,v 1.2 2007/02/06 16:25:16 ddimon Exp $
- See Also:
PluginRegistry.readManifestInfo(URL)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getId()
MatchingRule
getMatchingRule()
java.lang.String
getPluginId()
Version
getPluginVersion()
java.lang.String
getVendor()
Version
getVersion()
-
-
-
Method Detail
-
getId
java.lang.String getId()
- Returns:
- plug-in or plug-in fragment identifier
-
getVersion
Version getVersion()
- Returns:
- plug-in or plug-in fragment version identifier
-
getVendor
java.lang.String getVendor()
- Returns:
- plug-in or plug-in fragment vendor
-
getPluginId
java.lang.String getPluginId()
- Returns:
- plug-in identifier this, fragment contributes to or
null
if this info is for plug-in manifest
-
getPluginVersion
Version getPluginVersion()
- Returns:
- plug-in version identifier, this fragment contributes to or
null
if this info is for plug-in manifest
-
getMatchingRule
MatchingRule getMatchingRule()
- Returns:
- plug-in version matching rule or
null
if this info is for plug-in manifest
-
-