<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
xmlns:demo="com.tsclausing.demo.*" viewSourceURL="srcview/index.html">
<mx:HBox>
<mx:VBox>
<mx:Label
text="Component Lifecycle Log"/>
<mx:TextInput
htmlText="{demo.log}"
width="300"
height="180"/>
</mx:VBox>
<mx:VBox>
<mx:Label
text="Invalidation Log"/>
<mx:TextInput
htmlText="{demo.invalidationLog}"
width="160"
height="180"/>
</mx:VBox>
</mx:HBox>
<demo:UIComponentDemo
id="demo"/>
</mx:Application>