Package org.apache.tools.ant.taskdefs
Class Javadoc.LinkArgument
- java.lang.Object
- 
- org.apache.tools.ant.taskdefs.Javadoc.LinkArgument
 
- 
- Enclosing class:
- Javadoc
 
 public class Javadoc.LinkArgument extends java.lang.ObjectRepresents a link triplet (href, whether link is offline, location of the package list if off line)
- 
- 
Constructor SummaryConstructors Constructor Description LinkArgument()Constructor for LinkArgument
 - 
Method SummaryModifier and Type Method Description java.lang.StringgetHref()Get the href attribute.java.io.FilegetPackagelistLoc()Get the packetList location attribute.java.net.URLgetPackagelistURL()Get the packetList location attribute.booleanisLinkOffline()Get the linkOffline attribute.voidsetHref(java.lang.String hr)Set the href attribute.voidsetOffline(boolean offline)Set the offline attribute.voidsetPackagelistLoc(java.io.File src)Set the packetlist location attribute.voidsetPackagelistURL(java.net.URL src)Set the packetlist location attribute.voidsetResolveLink(boolean resolve)Sets whether Ant should resolve the link attribute relative to the current basedir.booleanshouldResolveLink()should Ant resolve the link attribute relative to the current basedir?
 
- 
- 
- 
Method Detail- 
setHrefpublic void setHref(java.lang.String hr) Set the href attribute.- Parameters:
- hr- a- Stringvalue
 
 - 
getHrefpublic java.lang.String getHref() Get the href attribute.- Returns:
- the href attribute.
 
 - 
setPackagelistLocpublic void setPackagelistLoc(java.io.File src) Set the packetlist location attribute.- Parameters:
- src- a- Filevalue
 
 - 
getPackagelistLocpublic java.io.File getPackagelistLoc() Get the packetList location attribute.- Returns:
- the packetList location attribute.
 
 - 
setPackagelistURLpublic void setPackagelistURL(java.net.URL src) Set the packetlist location attribute.- Parameters:
- src- an- URLvalue
 
 - 
getPackagelistURLpublic java.net.URL getPackagelistURL() Get the packetList location attribute.- Returns:
- the packetList location attribute.
 
 - 
setOfflinepublic void setOffline(boolean offline) Set the offline attribute.- Parameters:
- offline- a- booleanvalue
 
 - 
isLinkOfflinepublic boolean isLinkOffline() Get the linkOffline attribute.- Returns:
- the linkOffline attribute.
 
 - 
setResolveLinkpublic void setResolveLink(boolean resolve) Sets whether Ant should resolve the link attribute relative to the current basedir.- Parameters:
- resolve- a- booleanvalue
 
 - 
shouldResolveLinkpublic boolean shouldResolveLink() should Ant resolve the link attribute relative to the current basedir?- Returns:
- the resolveLink attribute.
 
 
- 
 
-