Share Pastebin
Guest
Public paste!

ejot

By: a guest | Jul 7th, 2008 | Syntax: ActionScript | Size: 0.32 KB | Hits: 36 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. package
  2. {
  3.         public class AnotherInterestingClass extends InterestingClass
  4.         {
  5.                 public function AnotherInterestingClass()
  6.                 {
  7.                         super();
  8.                 }
  9.                
  10.                 override public function method2(value:String):String {
  11.                         var inspected:Object = processStacktrace();
  12.                         doOutput(inspected);
  13.                         return "You told me: " + value;
  14.                 }
  15.         }
  16. }