home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Esportes / CrossingCup.swf / scripts / __Packages / com / bourre / log / BasicStringifier.as next >
Text File  |  2007-12-11  |  411b  |  15 lines

  1. class com.bourre.log.BasicStringifier implements com.bourre.log.Stringifier
  2. {
  3.    function BasicStringifier()
  4.    {
  5.    }
  6.    function stringify(target)
  7.    {
  8.       return "\'" + com.bourre.utils.ClassUtils.getFullyQualifiedClassName(target) + com.bourre.core.HashCodeFactory.getKey(target) + "\'";
  9.    }
  10.    function toString()
  11.    {
  12.       return com.bourre.log.PixlibStringifier.stringify(this);
  13.    }
  14. }
  15.