Configuring the UI description file

About this task
This section mainly describes the structure of UI description file. It uses Element Factory as its explication engine. It is highly recommended you to create and modify XUI file using XUI editor instead of XML editor.
Sample UI description file:
<XUI>
	<Composite bounds="74,61,590,366" id="errorComposite">
		<Label bounds="38,33,492,29" text="Cancel Confirmation"
			font="arial,15,NORMAL" background="0,128,192"
			foreground="255,255,255" alignment="CENTER">
		</Label>
		<Label bounds="70,121,439,29"
			text="Are you sure to cancel your request?">
		</Label>
		<Button bounds="107,214,80,25" text="Yes">
			<list Injection="actions">
				<com.ibm.btt.rcp.xui.action.StateChangeAction
					state="ok">
				</com.ibm.btt.rcp.xui.action.StateChangeAction>
			</list>
		</Button>
		<Button bounds="281,214,80,25" text="No">
			<list Injection="actions">
				<com.ibm.btt.rcp.xui.action.StateChangeAction
					state="cancel">
				</com.ibm.btt.rcp.xui.action.StateChangeAction>
			</list>
		</Button>
	</Composite>
</XUI>