home *** CD-ROM | disk | FTP | other *** search
- package caurina.transitions
- {
- public class SpecialPropertyModifier
- {
-
-
- public var getValue:Function;
-
- public var modifyValues:Function;
-
- public function SpecialPropertyModifier(p_modifyFunction:Function, p_getFunction:Function)
- {
- super();
- modifyValues = p_modifyFunction;
- getValue = p_getFunction;
- }
-
- public function toString() : String
- {
- var value:* = "";
- value += "[SpecialPropertyModifier ";
- value += "modifyValues:" + String(modifyValues);
- value += ", ";
- value += "getValue:" + String(getValue);
- return value + "]";
- }
- }
- }
-