de.mguennewig.pobjform
Interface LinkElement

All Superinterfaces:
FormElement
All Known Implementing Classes:
AbstractLinkElement, HtmlLinkElement

public interface LinkElement
extends FormElement

Interface for all link elements.

Author:
Michael Günnewig

Method Summary
 java.lang.String getLinkUrl()
          Returns the URL the link is pointing to.
 void setLinkUrl(java.lang.String url)
          Sets the URL the link will point to.
 void setVisible(boolean visible)
          Sets whether the link is visible.
 
Methods inherited from interface de.mguennewig.pobjform.FormElement
appendToList, getContainer, getEntry, getForm, getLabel, getProperty, getPullInPrefix, hasChanged, isMandatory, isPulledIn, isVisible, omitRowHeader, setLabel, setProperty, setPullInPrefix, startsNewCell, validate
 

Method Detail

getLinkUrl

java.lang.String getLinkUrl()
Returns the URL the link is pointing to.


setLinkUrl

void setLinkUrl(java.lang.String url)
Sets the URL the link will point to.


setVisible

void setVisible(boolean visible)
Sets whether the link is visible.

Specified by:
setVisible in interface FormElement