Imported PrepareActorsCommand and added as sub command in StartupCommand

This commit is contained in:
Greg Jastrab 2008-12-05 13:59:30 -05:00
parent e4a82c56b4
commit 84018b56af
1 changed files with 9 additions and 1 deletions

View File

@ -252,7 +252,7 @@
</replace>
</target>
<target name="create-simple-command" depends="init,prompt-command-name,prompt-command-const,set-filters"
<target name="create-simple-command" depends="init,prompt-command-name,set-filters"
description="Creates a SimpleCommand">
<echo>${log.gen.simple.command}</echo>
<copy file="${simple.template}"
@ -296,6 +296,14 @@
<param name="cmd.name" value="Startup" />
<param name="cmd.const" value="STARTUP" />
</antcall>
<replace file="${core.dir}/${controller.dir}/StartupCommand.as"
token="//pmvcgen:import commands">
<replacevalue><![CDATA[import @namespace@.@controller.dir@.PrepareActorsCommand;
//pmvcgen:import commands]]></replacevalue>
<replacefilter token="//pmvcgen:chain simple commands" value="addSubCommand(PrepareActorsCommand);" />
<replacefilter token="@namespace@" value="${core.namespace}" />
<replacefilter token="@controller.dir@" value="${controller.dir}" />
</replace>
<!--replace file="${core.dir}/${app.prefix}Facade.as"
token="/* CONST FOR COMMAND */" value="STARTUP" /-->
</target>