| org.jasig.portal.IAnchoringSerializer
All known Subclasses: org.jasig.portal.serialize.HTMLSerializer, org.jasig.portal.serialize.BaseMarkupSerializer,
IAnchoringSerializer | public interface IAnchoringSerializer (Code) | | An anchoring serializer allows an external client to control
its anchor identifier. When set (when it isn't null), it should
append this anchor identifier to its URLs so that when a user
clicks on one of the URLs, the user's browser will jump
down to the anchor. The original use of this interface will be
to make it possible to add anchors to channel links and forms
where the anchor is set to the channel's subscribtion ID.
author: Ken Weiner, kweiner@unicon.net version: $Revision: 34803 $ |
Method Summary | |
public void | startAnchoring(String anchorId) Signify that the serializer should begin to
append the anchor ID to URLs of its choosing. | public void | stopAnchoring() Signify that anchoring is no longer desired by
the serializer. |
startAnchoring | public void startAnchoring(String anchorId)(Code) | | Signify that the serializer should begin to
append the anchor ID to URLs of its choosing.
Parameters: anchorId - the anchor identifier |
stopAnchoring | public void stopAnchoring()(Code) | | Signify that anchoring is no longer desired by
the serializer.
|
|
|