﻿<?xml version="1.0"?>
<flash_encoder version="1.0">
	<encoder_definition dialogID="Dialog" category="Basic Types" name="Boolean">
		<properties>
			<property id="trueStrings" default="yes,YES,Yes,y,T,t,true,True,TRUE"/> 
			<property id="falseStrings" default="no,NO,No,n,F,f,false,False,FALSE"/>
		</properties>
		<dialog id="Dialog" title="Boolesch-Kodierer" buttons="accept, cancel">
			<grid>		
				<columns>
					<column/> 
					<column/>
				</columns>
	
				<row>
					<label value="Strings, die TRUE bedeuten:  " control="trueStrings"/> 
					<textbox id="trueStrings" width="175"/>
				</row>
				<row>
					<label value="Strings, die FALSE bedeuten:  " control="falseStrings"/> 
					<textbox id="falseStrings" width="175"/>
				</row>
			</grid>	
		</dialog>
		<actionscript class="mx.data.encoders.Bool"/>
	</encoder_definition>
</flash_encoder>
