The default Web user interface for Business Process Choreographer Explorer consists of a menu bar, a navigation pane, and a content pane.
The menu bar and the navigation panes are always displayed. They are generated by the Menubar.jsp and Navigation.jsp files. Other JavaServer Pages (JSP) files use the <jsp:include page=xxx> tag to reference these files. The information shown in the content pane depends on the JSP file that is used to generate the page.
The layout of the user interface is implemented in HTML forms; tables are used for tabular data only. The visual appearance of each of the sections is controlled by a style definition in the style.css file.
<body> <jsp:include page="Header.jsp" flush="true"/> <table class="page"> <tr> <jsp:include page="Navigation.jsp" flush="true"/> <td class="content"> ... </td> </tr> </table> </body>
Last updated: Tue Feb 21 17:47:12 2006
(c) Copyright IBM Corporation 2005.
This information center is powered by Eclipse technology (http://www.eclipse.org)