Package org.sakaiproject.site.util
Class ActionLinkItem
- java.lang.Object
-
- org.sakaiproject.site.util.ActionLinkItem
-
public class ActionLinkItem extends Object
Inner class to put certain type of link into UI, that could be enabled or disabled by user actions- Author:
- zqian
-
-
Constructor Summary
Constructors Constructor Description ActionLinkItem()ActionLinkItem(String id, String label, String link, boolean toggleable, boolean disabled)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetDisabled()StringgetId()StringgetLabel()StringgetLink()booleangetToggleable()voidsetDisabled(boolean disabled)voidsetId(String id)voidsetLabel(String label)voidsetLink(String link)voidsetToggleable(boolean toggleable)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getLabel
public String getLabel()
-
setLabel
public void setLabel(String label)
-
getLink
public String getLink()
-
setLink
public void setLink(String link)
-
getToggleable
public boolean getToggleable()
-
setToggleable
public void setToggleable(boolean toggleable)
-
getDisabled
public boolean getDisabled()
-
setDisabled
public void setDisabled(boolean disabled)
-
-