org.apache.struts.faces.component
Class CommandLinkComponent

java.lang.Object
  extended by javax.faces.component.UIComponent
      extended by javax.faces.component.UIComponentBase
          extended by javax.faces.component.UICommand
              extended by org.apache.struts.faces.component.CommandLinkComponent
All Implemented Interfaces:
javax.faces.component.ActionSource, javax.faces.component.StateHolder

public class CommandLinkComponent
extends javax.faces.component.UICommand

Custom component that emulates the JSF standard component class javax.faces.component.html.HtmlCommandLink (and its corresponding renderer) but is not tied to a particular implementation of renderer for javax.faces.component.UIForm.


Field Summary
 
Fields inherited from class javax.faces.component.UICommand
COMPONENT_FAMILY, COMPONENT_TYPE
 
Constructor Summary
CommandLinkComponent()
          Create a new CommandLinkComponent with default properties.
 
Method Summary
 String getAccesskey()
           
 String getCharset()
           
 String getDir()
           
 String getFamily()
          Return the component family to which this component belongs.
 String getHreflang()
           
 String getLang()
           
 String getOnblur()
           
 String getOnclick()
           
 String getOndblclick()
           
 String getOnfocus()
           
 String getOnkeydown()
           
 String getOnkeypress()
           
 String getOnkeyup()
           
 String getOnmousedown()
           
 String getOnmousemove()
           
 String getOnmouseout()
           
 String getOnmouseover()
           
 String getOnmouseup()
           
 String getRel()
           
 String getRev()
           
 String getStyle()
           
 String getStyleClass()
           
 String getTabindex()
           
 String getTarget()
           
 String getTitle()
           
 String getType()
           
 void restoreState(javax.faces.context.FacesContext context, Object state)
          Restore the state of this component.
 Object saveState(javax.faces.context.FacesContext context)
          Save the state of this component.
 void setAccesskey(String accesskey)
           
 void setCharset(String charset)
           
 void setDir(String dir)
           
 void setHreflang(String hreflang)
           
 void setLang(String lang)
           
 void setOnblur(String onblur)
           
 void setOnclick(String onclick)
           
 void setOndblclick(String ondblclick)
           
 void setOnfocus(String onfocus)
           
 void setOnkeydown(String onkeydown)
           
 void setOnkeypress(String onkeypress)
           
 void setOnkeyup(String onkeyup)
           
 void setOnmousedown(String onmousedown)
           
 void setOnmousemove(String onmousemove)
           
 void setOnmouseout(String onmouseout)
           
 void setOnmouseover(String onmouseover)
           
 void setOnmouseup(String onmouseup)
           
 void setRel(String rel)
           
 void setRev(String rev)
           
 void setStyle(String style)
           
 void setStyleClass(String styleClass)
           
 void setTabindex(String tabindex)
           
 void setTarget(String target)
           
 void setTitle(String title)
           
 void setType(String type)
           
 
Methods inherited from class javax.faces.component.UICommand
addActionListener, broadcast, getAction, getActionListener, getActionListeners, getValue, isImmediate, queueEvent, removeActionListener, setAction, setActionListener, setImmediate, setValue
 
Methods inherited from class javax.faces.component.UIComponentBase
addFacesListener, decode, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributes, getChildCount, getChildren, getClientId, getFacesContext, getFacesListeners, getFacet, getFacets, getFacetsAndChildren, getId, getParent, getRenderer, getRendererType, getRendersChildren, getValueBinding, isRendered, isTransient, processDecodes, processRestoreState, processSaveState, processUpdates, processValidators, removeFacesListener, restoreAttachedState, saveAttachedState, setId, setParent, setRendered, setRendererType, setTransient, setValueBinding
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CommandLinkComponent

public CommandLinkComponent()

Create a new CommandLinkComponent with default properties.

Method Detail

getAccesskey

public String getAccesskey()

setAccesskey

public void setAccesskey(String accesskey)

getCharset

public String getCharset()

setCharset

public void setCharset(String charset)

getDir

public String getDir()

setDir

public void setDir(String dir)

getFamily

public String getFamily()

Return the component family to which this component belongs.

Overrides:
getFamily in class javax.faces.component.UICommand

getHreflang

public String getHreflang()

setHreflang

public void setHreflang(String hreflang)

getLang

public String getLang()

setLang

public void setLang(String lang)

getOnblur

public String getOnblur()

setOnblur

public void setOnblur(String onblur)

getOnclick

public String getOnclick()

setOnclick

public void setOnclick(String onclick)

getOndblclick

public String getOndblclick()

setOndblclick

public void setOndblclick(String ondblclick)

getOnfocus

public String getOnfocus()

setOnfocus

public void setOnfocus(String onfocus)

getOnkeydown

public String getOnkeydown()

setOnkeydown

public void setOnkeydown(String onkeydown)

getOnkeypress

public String getOnkeypress()

setOnkeypress

public void setOnkeypress(String onkeypress)

getOnkeyup

public String getOnkeyup()

setOnkeyup

public void setOnkeyup(String onkeyup)

getOnmousedown

public String getOnmousedown()

setOnmousedown

public void setOnmousedown(String onmousedown)

getOnmousemove

public String getOnmousemove()

setOnmousemove

public void setOnmousemove(String onmousemove)

getOnmouseout

public String getOnmouseout()

setOnmouseout

public void setOnmouseout(String onmouseout)

getOnmouseover

public String getOnmouseover()

setOnmouseover

public void setOnmouseover(String onmouseover)

getOnmouseup

public String getOnmouseup()

setOnmouseup

public void setOnmouseup(String onmouseup)

getRel

public String getRel()

setRel

public void setRel(String rel)

getRev

public String getRev()

setRev

public void setRev(String rev)

getStyle

public String getStyle()

setStyle

public void setStyle(String style)

getStyleClass

public String getStyleClass()

setStyleClass

public void setStyleClass(String styleClass)

getTabindex

public String getTabindex()

setTabindex

public void setTabindex(String tabindex)

getTarget

public String getTarget()

setTarget

public void setTarget(String target)

getTitle

public String getTitle()

setTitle

public void setTitle(String title)

getType

public String getType()

setType

public void setType(String type)

restoreState

public void restoreState(javax.faces.context.FacesContext context,
                         Object state)

Restore the state of this component.

Specified by:
restoreState in interface javax.faces.component.StateHolder
Overrides:
restoreState in class javax.faces.component.UICommand
Parameters:
context - FacesContext for the current request
state - State object from which to restore our state

saveState

public Object saveState(javax.faces.context.FacesContext context)

Save the state of this component.

Specified by:
saveState in interface javax.faces.component.StateHolder
Overrides:
saveState in class javax.faces.component.UICommand
Parameters:
context - FacesContext for the current request


Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.