ejot
By: a guest | Jul 7th, 2008 | Syntax:
ActionScript | Size: 0.32 KB | Hits: 36 | Expires: Never
package
{
public class AnotherInterestingClass extends InterestingClass
{
public function AnotherInterestingClass()
{
super();
}
override public function method2(value:String):String {
var inspected:Object = processStacktrace();
doOutput(inspected);
return "You told me: " + value;
}
}
}