<?xml version="1.0" encoding="utf-8"?>
<base:ApplicationBase
xmlns:base = "lib.*"
xmlns:comp = "comp.*"
xmlns:mx = "http://www.adobe.com/2006/mxml"
layout = "vertical"
viewSourceURL = "http://labs.taiga.jp/flex2/RepeaterSample/srcview/index.html">
<mx:Style source="./lib/ApplicationStyle.css" />
<mx:HBox>
<mx:VBox
width = "300"
height = "210"
styleName = "BoxBase"
verticalLineScrollSize = "30"
verticalPageScrollSize = "30">
<mx:Repeater id="compRepeater">
<comp:SubRow />
</mx:Repeater>
</mx:VBox>
<mx:Spacer width="5" />
<mx:TextArea id="compOutPutTextArea" width="300" height="210" editable="false" />
</mx:HBox>
<mx:Button id="compTestButton" label="trace" />
</base:ApplicationBase>