public abstract class ClassPathEntryBinaryElement extends ClassPathEntryPathElement
Constructor and Description |
---|
ClassPathEntryBinaryElement()
Creates a new instance of the element containing binary code.
|
Modifier and Type | Method and Description |
---|---|
boolean |
getExported()
Returns if the referred compiled byte-code is exported during the jar-file
generation (not by default).
|
java.lang.String |
getJavadoc()
Returns a path with a generated javadoc documentation to the referred compiled
byte-code or null if it has not been set, which means that the javadoc
is not available.
|
java.lang.String |
getSource()
Returns a path with source code to the referred compiled byte-code or null
if it has not been set, which means that the sources are not available.
|
void |
setExported(boolean flag)
Sets if the referred compiled byte-code is exported during the jar-file generation.
|
void |
setJavadoc(java.lang.String value)
Sets the path with a generated javadoc documentation to the referred compiled
byte-code.
|
void |
setSource(java.lang.String value)
Sets the path with source code to the referred compiled byte-code.
|
getPathRef, setPath, setPathRef, validate
getPath
public ClassPathEntryBinaryElement()
public boolean getExported()
public void setExported(boolean flag)
flag
- True if the referred compiled byte-code is exported during the
jar-file generation.public java.lang.String getSource()
public void setSource(java.lang.String value)
value
- The path with source code to the referred compiled byte-code.public java.lang.String getJavadoc()
public void setJavadoc(java.lang.String value)
value
- The path with javadoc to the referred compiled byte-code.