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 class
Module.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 boolean
equals(Object obj)
Collection<Module.HtmlLink>
getChildren()
String
getLegend()
String
getTitle()
String
getUrl()
boolean
isReadonly()
boolean
isSelected()
void
setChildren(Collection<Module.HtmlLink> children)
void
setLegend(String legend)
void
setReadonly(boolean readonly)
void
setSelected(boolean selected)
void
setTitle(String title)
void
setUrl(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)
-
-