See here pages with template tag :
| Page | Date | Description | Tags |
|---|---|---|---|
| FDT Pixlib template Command | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates generic command" enabled="true" name="command">import com.bourre.commands.Command; import com.bourre.events.IEvent; import com.bourre.log.Logger; import com.bourre.log.PixlibStringifier; class ${enclosing_package_and_type} implements Command { public function ${e… | pixlib, fdt, template | |
| FDT Pixlib template FrontController | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates concrete front controller class for pixlib framework" enabled="true" name="controller">import com.bourre.core.HashCodeFactory; import com.bourre.events.FrontController; import com.bourre.log.PixlibStringifier; class ${enclosing_package_and_type} extends FrontController { … | pixlib, fdt, template | |
| FDT Pixlib template Debug | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?> <templates> <template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates a class that encapsulates a debug channel for pixlib logging API" enabled="true" name="debug"> import com.bourre.core.HashCodeFactory; import com.bourre.log.LogChannel; import com.bourre.log.Logger; import com.bourre.log.LogLevel; import com.bourre.log.PixlibStringifier; class ${enclosing_package}.Deb… | pixlib, fdt, template | |
| FDT Pixlib template Event | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Extends BasicEvent to create a new Event" enabled="true" name="event">import com.bourre.core.HashCodeFactory; import com.bourre.events.BasicEvent; import com.bourre.events.EventType; import com.bourre.log.PixlibStringifier; class ${enclosing_package_and_type} extends BasicEvent … | pixlib, fdt, template | |
| FDT Pixlib template EventList | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="" enabled="true" name="eventList">import com.bourre.events.BasicEvent; import com.bourre.events.EventType; class ${enclosing_package_and_type} { private function EventList() { // } public static var clickTagEVENT:EventType = new EventType("clickTag"); … | pixlib, fdt, template | |
| FDT Pixlib template ExpressInstall | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="template for Adobe Express installation" enabled="true" name="expressInstall">/** * ExpressInstall class v0.91 - http://blog.deconcept.com/flashobject/ * * 08-12-2005 (c) 2005 Geoff Stearns and is released under the MIT License: * http://www.opensource.org/licenses/mit-license.php *… | pixlib, fdt, template | |
| FDT Pixlib template IOC | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="extends AbstractCommand - pixIOC" enabled="true" name="cmdioc">import com.bourre.events.IEvent; import com.bourre.ioc.control.AbstractCommand; import com.bourre.log.PixlibStringifier; class ${enclosing_package_and_type} extends AbstractCommand { public function ${enclosing_typ… | pixlib, fdt, template | |
| FDT Pixlib template Main | pixlib, fdt, template a basic Main class template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates an MTASC public static main function" enabled="true" id="com.pf.fdt.ui.editor.template.smain" name="main">import com.bourre.core.HashCodeFactory; import com.bourre.log.Logger; import com.bourre.log.LogLevel; import com.bourre.log.PixlibStringifier; import com.bourre.utils.Luminic… | pixlib, fdt, template | |
| FDT Pixlib template Model | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Extends Model class from core package" enabled="true" name="model">import com.bourre.core.HashCodeFactory; import com.bourre.core.Model; import com.bourre.events.BasicEvent; import com.bourre.events.EventType; import com.bourre.log.PixlibStringifier; class ${enclosing_package_and_type… | pixlib, fdt, template | |
| FDT Pixlib template Remoting command | pixlib, fdt, template Command and Business delegate are merged). <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates remoting command class for osPixlib" enabled="true" name="remoting">import com.bourre.commands.Command; import com.bourre.core.HashCodeFactory; import com.bourre.events.IEvent; import com.bourre.log.Logger; import com.bourre.log.LogLevel; i… | pixlib, fdt, template | |
| FDT Pixlib template ServiceLocator | pixlib, fdt, template For pixlib remoting package. <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates concrete service locator class for pixlib framework" enabled="true" name="servicelocator">import com.bourre.core.HashCodeFactory; import com.bourre.remoting.ServiceProxyLocator; import com.bourre.log.PixlibStringifier; class ${enclosing_package_and_type} … | pixlib, fdt, template | |
| FDT Pixlib template Singleton | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates complete Singleton" enabled="true" id="com.pf.fdt.ui.editor.template.singleton" name="singleton">import com.bourre.log.PixlibStringifier; /** * @author ${user} */ class ${enclosing_package_and_type} { private static var _oI : ${enclosing_type}; /** * @return singleton instance of ${enclosing_type} … | pixlib, fdt, template | |
| FDT Pixlib template MovieClipHelper | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates UI class which extends MovieClipHelper" enabled="true" name="ui">import com.bourre.core.HashCodeFactory; import com.bourre.log.PixlibStringifier; import com.bourre.visual.MovieClipHelper; class ${enclosing_package_and_type} extends MovieClipHelper { public function ${e… | pixlib, fdt, template | |
| FDT Pixlib template Command | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates generic command" enabled="true" name="command">import com.bourre.commands.Command; import com.bourre.events.IEvent; import com.bourre.log.Logger; import com.bourre.log.PixlibStringifier; class ${enclosing_package_and_type} implements Command { public function ${e… | pixlib, fdt, template | |
| FDT Pixlib template FrontController | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates concrete front controller class for pixlib framework" enabled="true" name="controller">import com.bourre.core.HashCodeFactory; import com.bourre.events.FrontController; import com.bourre.log.PixlibStringifier; class ${enclosing_package_and_type} extends FrontController { … | pixlib, fdt, template | |
| FDT Pixlib template Debug | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?> <templates> <template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates a class that encapsulates a debug channel for pixlib logging API" enabled="true" name="debug"> import com.bourre.core.HashCodeFactory; import com.bourre.log.LogChannel; import com.bourre.log.Logger; import com.bourre.log.LogLevel; import com.bourre.log.PixlibStringifier; class ${enclosing_package}.Deb… | pixlib, fdt, template | |
| FDT Pixlib template Event | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Extends BasicEvent to create a new Event" enabled="true" name="event">import com.bourre.core.HashCodeFactory; import com.bourre.events.BasicEvent; import com.bourre.events.EventType; import com.bourre.log.PixlibStringifier; class ${enclosing_package_and_type} extends BasicEvent … | pixlib, fdt, template | |
| FDT Pixlib template EventList | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="" enabled="true" name="eventList">import com.bourre.events.BasicEvent; import com.bourre.events.EventType; class ${enclosing_package_and_type} { private function EventList() { // } public static var clickTagEVENT:EventType = new EventType("clickTag"); … | pixlib, fdt, template | |
| FDT Pixlib template ExpressInstall | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="template for Adobe Express installation" enabled="true" name="expressInstall">/** * ExpressInstall class v0.91 - http://blog.deconcept.com/flashobject/ * * 08-12-2005 (c) 2005 Geoff Stearns and is released under the MIT License: * http://www.opensource.org/licenses/mit-license.php *… | pixlib, fdt, template | |
| FDT Pixlib template IOC | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="extends AbstractCommand - pixIOC" enabled="true" name="cmdioc">import com.bourre.events.IEvent; import com.bourre.ioc.control.AbstractCommand; import com.bourre.log.PixlibStringifier; class ${enclosing_package_and_type} extends AbstractCommand { public function ${enclosing_typ… | pixlib, fdt, template | |
| FDT Pixlib template Main | pixlib, fdt, template a basic Main class template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates an MTASC public static main function" enabled="true" id="com.pf.fdt.ui.editor.template.smain" name="main">import com.bourre.core.HashCodeFactory; import com.bourre.log.Logger; import com.bourre.log.LogLevel; import com.bourre.log.PixlibStringifier; import com.bourre.utils.Luminic… | pixlib, fdt, template | |
| FDT Pixlib template Model | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Extends Model class from core package" enabled="true" name="model">import com.bourre.core.HashCodeFactory; import com.bourre.core.Model; import com.bourre.events.BasicEvent; import com.bourre.events.EventType; import com.bourre.log.PixlibStringifier; class ${enclosing_package_and_type… | pixlib, fdt, template | |
| FDT Pixlib template Remoting command | pixlib, fdt, template Command and Business delegate are merged). <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates remoting command class for osPixlib" enabled="true" name="remoting">import com.bourre.commands.Command; import com.bourre.core.HashCodeFactory; import com.bourre.events.IEvent; import com.bourre.log.Logger; import com.bourre.log.LogLevel; i… | pixlib, fdt, template | |
| FDT Pixlib template ServiceLocator | pixlib, fdt, template For pixlib remoting package. <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates concrete service locator class for pixlib framework" enabled="true" name="servicelocator">import com.bourre.core.HashCodeFactory; import com.bourre.remoting.ServiceProxyLocator; import com.bourre.log.PixlibStringifier; class ${enclosing_package_and_type} … | pixlib, fdt, template | |
| FDT Pixlib template Singleton | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates complete Singleton" enabled="true" id="com.pf.fdt.ui.editor.template.singleton" name="singleton">import com.bourre.log.PixlibStringifier; /** * @author ${user} */ class ${enclosing_package_and_type} { private static var _oI : ${enclosing_type}; /** * @return singleton instance of ${enclosing_type} … | pixlib, fdt, template | |
| FDT Pixlib template toString | 2007/12/10 05:44 | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.powerflasher.fdt.ui.editor.template.as2" deleted="false" description="" enabled="true" name="toString (pixLib)">public function toString() : String { return PixlibStringifier.stringify( this ); }</template></templates> | pixlib, fdt, template |
| FDT Pixlib template MovieClipHelper | pixlib, fdt, template <?xml version="1.0" encoding="UTF-8"?><templates><template autoinsert="true" context="com.pf.fdt.ui.editor.template.actionscript" deleted="false" description="Creates UI class which extends MovieClipHelper" enabled="true" name="ui">import com.bourre.core.HashCodeFactory; import com.bourre.log.PixlibStringifier; import com.bourre.visual.MovieClipHelper; class ${enclosing_package_and_type} extends MovieClipHelper { public function ${e… | pixlib, fdt, template |