Interface CodeSourceDescriptor
public interface CodeSourceDescriptor
Descriptor with details of a
CodeSource.- Since:
- 1.0.0
- Author:
- Joerg Hohwiller (hohwille at users.sourceforge.net)
- See Also:
-
Field Details
-
VERSION_UNDEFINED
-
-
Method Details
-
getId
String getId()- Returns:
- the unique ID of this source. E.g. "«
groupId»:«artifactId»:«version»" (GAV coordinates) for a maven project. May be theCodeSource-IDif no other information is available.
-
getGroupId
String getGroupId()- Returns:
- the group ID of the
CodeSourceornullif undefined.
-
getArtifactId
String getArtifactId()- Returns:
- the artifact ID of the
CodeSource. Nevernull.
-
getVersion
String getVersion()- Returns:
- the version of the
CodeSourceif available orVERSION_UNDEFINED.
-
getScope
String getScope()- Returns:
- the optional scope of the
CodeSource(e.g. "compile" for sub-source "src/main/java" or "test" for sub-source "src/test/java"). May benull(default for entire project).
-
getDocUrl
String getDocUrl()- Returns:
- the base URL of the JavaDoc for this source. May be
nullif unavailable.
-