JViews Core
Tag debugDependencies


Auxiliary Faces Component for Debug Dependencies

The auxiliary faces component for debug dependencies provides developers with a facility to identify unresolved dependencies that may exist in their JSF JSP pages. For example, the page declares an image button faces component that is linked to a message box faces component through its messageBoxId attribute. If the message box faces component is not declared on the page by the time the debug dependencies faces component is reached, the debug dependencies faces component will display a message to warn this unresolved reference.

Usage

<jv:imageButton
    id="showDetailsButton"
    title="Show Details"
    style="width:20px; height:20px;"
    image="images/show-details-button-normal-image.gif"
    selectedImage="images/show-details-button-selected-image.gif"
    rolloverImage="images/show-details-button-highlighted-image.gif"
    onclick="alert('Here are the details...');"
    messageBoxId="messageBox"
    message="Show Details Message..."/>
...
<jv:debugDependencies/>
...
<!--
Because the message box is not defined before the
<debugDependencies> a warning will be shown
-->
<jv:messageBox
    id="messageBox"
    styleClass="messageBoxClass" />

DHTML - JavaScript Types

This component has no JavaScript representation.

JSF Component Class

IlvDebugDependencies



Tag Information
Tag Classilog.views.faces.dhtml.taglib.IlvDebugDependenciesTag
TagExtraInfo ClassNone
Body ContentJSP
Display NameDebug Dependencies

Attributes
No Attributes Defined.

Variables
No Variables Defined.


Output Generated by Tag Library Documentation Generator. Java, JSP, and JavaServer Pages are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries. Copyright 2002-4 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054, U.S.A. All Rights Reserved.   Documentation homepage.