25 lines
800 B
Plaintext
25 lines
800 B
Plaintext
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
|
|
<%@ taglib prefix="netui" uri="http://beehive.apache.org/netui/tags-html-1.0"%>
|
|
<%@ taglib prefix="netui-data" uri="http://beehive.apache.org/netui/tags-databinding-1.0"%>
|
|
<%@ taglib prefix="netui-template" uri="http://beehive.apache.org/netui/tags-template-1.0"%>
|
|
|
|
|
|
<netui:html>
|
|
<head>
|
|
<netui:base/>
|
|
</head>
|
|
<netui:body>
|
|
<h3>${pageFlow.URI}</h3>
|
|
|
|
The factory <code>miniTests.flowControllerFactory.TestFactory</code> has created this page
|
|
flow instance. It sets a property in the page flow's constructor (where normally, the
|
|
framework would call the default constructor).
|
|
<br/>
|
|
<br/>
|
|
init val: <b>${pageFlow.initVal}</b>
|
|
</netui:body>
|
|
</netui:html>
|
|
|
|
|
|
|