history.page

来自「Enjoy Web Dev With Tapestry 一书的源代码」· PAGE 代码 · 共 23 行

PAGE
23
字号
<?xml version="1.0"?>
<!DOCTYPE page-specification PUBLIC
  "-//Apache Software Foundation//Tapestry Specification 4.0//EN"
  "http://jakarta.apache.org/tapestry/dtd/Tapestry_4_0.dtd">
<page-specification class="com.ttdev.tddcalc.History">
	<component id="history" type="For">
		<binding name="source" value="calculations"/>
		<binding name="value" value="calculation"/>
		<binding name="element" value="literal:tr"/>
	</component>
	<component id="num1" type="Insert">
		<binding name="value" value="calculation.num1"/>
	</component>
	<component id="num2" type="Insert">
		<binding name="value" value="calculation.num2"/>
	</component>
	<component id="operator" type="Insert">
		<binding name="value" value="calculation.operator"/>
	</component>
	<component id="result" type="Insert">
		<binding name="value" value="calculation.result"/>
	</component>
</page-specification>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?