Class LinkArgument
java.lang.Object
org.codehaus.groovy.tools.groovydoc.LinkArgument
public class LinkArgument
extends java.lang.Object
Represents a link pair (href, packages).
 The packages are comma separated.
- 
Constructor SummaryConstructors Constructor Description LinkArgument()
- 
Method SummaryModifier and Type Method Description java.lang.StringgetHref()Get the href attribute.java.lang.StringgetPackages()Get the packages attribute.voidsetHref(java.lang.String hr)Set the href attribute.voidsetPackages(java.lang.String packages)Set the packages attribute.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- 
Constructor Details- 
LinkArgumentpublic LinkArgument()
 
- 
- 
Method Details- 
getPackagespublic java.lang.String getPackages()Get the packages attribute.- Returns:
- the packages attribute.
 
- 
setPackagespublic void setPackages(java.lang.String packages)Set the packages attribute.- Parameters:
- packages- the comma separated package prefixes corresponding to this link
 
- 
getHrefpublic java.lang.String getHref()Get the href attribute.- Returns:
- the href attribute.
 
- 
setHrefpublic void setHref(java.lang.String hr)Set the href attribute.- Parameters:
- hr- a- Stringvalue representing the URL to use for this link
 
 
-