Package org.javlo.module.core
Class Module.HtmlLink
- java.lang.Object
-
- org.javlo.module.core.Module.HtmlLink
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classModule.HtmlLink.SortOnLegend
-
Constructor Summary
Constructors Constructor Description HtmlLink(String url, String legend, String title)HtmlLink(String url, String legend, String title, boolean readonly)HtmlLink(String url, String legend, String title, boolean selected, Collection<Module.HtmlLink> children)HtmlLink(String url, String legend, String title, boolean selected, Collection<Module.HtmlLink> children, boolean readonly)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)Collection<Module.HtmlLink>getChildren()StringgetLegend()StringgetTitle()StringgetUrl()booleanisReadonly()booleanisSelected()voidsetChildren(Collection<Module.HtmlLink> children)voidsetLegend(String legend)voidsetReadonly(boolean readonly)voidsetSelected(boolean selected)voidsetTitle(String title)voidsetUrl(String url)
-
-
-
Constructor Detail
-
HtmlLink
public HtmlLink(String url, String legend, String title, boolean selected, Collection<Module.HtmlLink> children)
-
HtmlLink
public HtmlLink(String url, String legend, String title, boolean selected, Collection<Module.HtmlLink> children, boolean readonly)
-
-
Method Detail
-
getUrl
public String getUrl()
-
setUrl
public void setUrl(String url)
-
getLegend
public String getLegend()
-
setLegend
public void setLegend(String legend)
-
getTitle
public String getTitle()
-
setTitle
public void setTitle(String title)
-
getChildren
public Collection<Module.HtmlLink> getChildren()
-
setChildren
public void setChildren(Collection<Module.HtmlLink> children)
-
isSelected
public boolean isSelected()
-
setSelected
public void setSelected(boolean selected)
-
isReadonly
public boolean isReadonly()
-
setReadonly
public void setReadonly(boolean readonly)
-
-