<?xml version="1.0" encoding="UTF-16" standalone="no"?>
<snippets>
    <category filters="*" id="category_1209735646720" initial_state="0" label="Flex" largeicon="" smallicon="">
        <description/>
        <item category="category_1209735646720" class="" editorclass="" id="item_1209736389300" label="for loop" largeicon="" smallicon="">
            <description><![CDATA[var len:uint = a.length;]]></description>
            <content><![CDATA[var len:uint = ${array_name}.length;
		for(var i:uint = 0; i < len; i++;)
		{
			var ${temp_variable}:${element_type} = ${array_name}[i] as ${element_type};
		}]]></content>
            <variable default="temp" id="name_3" name="temp_variable">
                <description><![CDATA[name of the temp variable]]></description>
            </variable>
            <variable default="Object" id="name_2" name="element_type">
                <description><![CDATA[type of the Array elements]]></description>
            </variable>
            <variable default="a" id="name_1" name="array_name">
                <description><![CDATA[name of the Array to iterate over]]></description>
            </variable>
        </item>
        <item category="category_1209735646720" class="" editorclass="" id="item_1209735646813" label="getter/setter" largeicon="" smallicon="">
            <description><![CDATA[default getter/setter]]></description>
            <content><![CDATA[private var _${PROP_NAME}:Object;

		[Bindable]	
		public function get ${PROP_NAME}():${PROP_TYPE}
		{
			return _${PROP_NAME};
		}
		public function set ${PROP_NAME}(${PROP_PARAM}:${PROP_TYPE}):void
		{
			_${PROP_NAME} = ${PROP_PARAM};
		}]]></content>
            <variable default="param" id="name_3" name="PROP_PARAM">
                <description><![CDATA[parameter variable name]]></description>
            </variable>
            <variable default="name" id="name_2" name="PROP_NAME">
                <description><![CDATA[name of the variable]]></description>
            </variable>
            <variable default="Object" id="name_1" name="PROP_TYPE">
                <description><![CDATA[type of the variable]]></description>
            </variable>
        </item>
    </category>
</snippets>
