What is the best way to reuse functions in Flex MVC environment? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T21:56:17Zhttp://stackoverflow.com/feeds/question/429599http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/429599/what-is-the-best-way-to-reuse-functions-in-flex-mvc-environment0What is the best way to reuse functions in Flex MVC environment?Eric Belair2009-01-09T20:29:10Z2009-01-11T04:57:23Z
<p>I am using a Cairngorm MVC architecture for my current project.</p>
<p>I have several commands which use the same type of function that returns a value. I would like to have this function in one place, and reuse it, rather than duplicate the code in each command. What is the best way to do this?</p>
http://stackoverflow.com/questions/429599/what-is-the-best-way-to-reuse-functions-in-flex-mvc-environment/430273#4302731Answer by Christian Nunciato for What is the best way to reuse functions in Flex MVC environment?Christian Nunciato2009-01-10T00:40:14Z2009-01-10T00:40:14Z<p>You have lots of options here -- publicly defined functions in your model or controller, such as:</p>
<pre><code>var mySharedFunction:Function = function():void
{
trace("foo");
}
</code></pre>
<p>... static methods on new or existing classes, etc. Best practice probably depends on what the function needs to do, though. Can you elaborate?</p>
http://stackoverflow.com/questions/429599/what-is-the-best-way-to-reuse-functions-in-flex-mvc-environment/431543#4315431Answer by cliff.meyers for What is the best way to reuse functions in Flex MVC environment?cliff.meyers2009-01-10T18:56:52Z2009-01-10T18:56:52Z<p>Create an abstract base class for your commands and add your function in the protected scope. If you need to reuse it anywhere else, refactor it into a public static method on a utility class.</p>
http://stackoverflow.com/questions/429599/what-is-the-best-way-to-reuse-functions-in-flex-mvc-environment/432399#4323991Answer by Typeoneerror for What is the best way to reuse functions in Flex MVC environment?Typeoneerror2009-01-11T04:57:23Z2009-01-11T04:57:23Z<p>Create a static class or static method in one of your Cairngorm classes.</p>
<pre><code>class MyStatic
{
public static function myFunction(value:String):String
{
return "Returning " + value;
}
}
</code></pre>
<p>Then where you want to use your function:</p>
<pre><code>import MyStatic;
var str:String = MyStatic.myFunction("test");
</code></pre>
<p>Another option is to create a top level function (a la "trace"). Check out this post I wrote <a href="http://www.typeoneerror.com/global-top-level-functions-in-actionscript-3/" rel="nofollow" title="top level functions">here</a>.</p>