hjkhghopjkertteerterterterertertrtoirh
bnmbertsurhetertertertertertertertpdf'tdfg
/
srv
/
www
/
virtual
/
dev1.wccweb.jp.dac4.biz
/
web
/
htdocs
/
wphh
/
2009
/
wphh
/
caurina
/
transitions
/
Upload FileeE
HOME
package caurina.transitions { /** * SpecialPropertySplitter * A proxy setter for special properties * * @author Zeh Fernando * @version 1.0.0 * @private */ public class SpecialPropertySplitter { public var parameters:Array; public var splitValues:Function; /** * Builds a new group special property object. * * @param p_splitFunction Function Reference to the function used to split a value */ public function SpecialPropertySplitter (p_splitFunction:Function, p_parameters:Array) { splitValues = p_splitFunction; } /** * Converts the instance to a string that can be used when trace()ing the object */ public function toString():String { var value:String = ""; value += "[SpecialPropertySplitter "; value += "splitValues:"+String(splitValues); // .toString(); value += ", "; value += "parameters:"+String(parameters); value += "]"; return value; } } }