Changeset 11505 for lang/actionscript

Show
Ignore:
Timestamp:
05/13/08 16:43:36 (5 years ago)
Author:
gyuque
Message:

store values in RenderStyle?

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/actionscript/ascss/src/css/RenderStyle.as

    r11246 r11505  
    4747                        mPropMap[propId] = value; 
    4848                } 
     49 
     50                public function getCSSValueByPropId(propId:int):CSSValue 
     51                { 
     52                        return mPropMap[propId] as CSSValue; 
     53                } 
     54 
     55                public function isSetPropId(propId:int):Boolean 
     56                { 
     57                        return !!mPropMap[propId]; 
     58                } 
    4959        } 
    5060}