| 1 |
<?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 |
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:containers="flexlib.containers.*" xmlns:local="*"> |
|---|
| 3 |
<mx:XML id="sample" xmlns=""> |
|---|
| 4 |
<node label="Mail Box"> |
|---|
| 5 |
<node label="Primitive"> |
|---|
| 6 |
<node label="isNumber" data="/^-?(([0-9]+[.]?[0-9]*)|(.[0-9]+))$/" /> |
|---|
| 7 |
<node label="isHex" data="/^0x[0-9a-f]+$/i" /> |
|---|
| 8 |
<node label="isBoolean" data="/^((true)|(false))$/i" /> |
|---|
| 9 |
</node> |
|---|
| 10 |
<node label="URL"> |
|---|
| 11 |
<node label="isURL"/> |
|---|
| 12 |
<node label="getHash"/> |
|---|
| 13 |
<node label="getGET"/> |
|---|
| 14 |
</node> |
|---|
| 15 |
</node> |
|---|
| 16 |
</mx:XML> |
|---|
| 17 |
<mx:HBox width="100%" height="100%"> |
|---|
| 18 |
<mx:VBox width="200" height="100%"> |
|---|
| 19 |
<mx:Tree dataProvider="{sample}" labelField="@label" showRoot="false" id="sample_tr" openDuration="100" width="100%" height="100%"></mx:Tree> |
|---|
| 20 |
</mx:VBox> |
|---|
| 21 |
<containers:SuperTabNavigator width="100%" height="100%"> |
|---|
| 22 |
<local:RegPanel label="panel1"></local:RegPanel> |
|---|
| 23 |
<local:RegPanel label="panel2"></local:RegPanel> |
|---|
| 24 |
</containers:SuperTabNavigator> |
|---|
| 25 |
</mx:HBox> |
|---|
| 26 |
|
|---|
| 27 |
</mx:Application> |
|---|