Lib.as 484 B

1234567891011121314151617
  1. package {
  2. public class Lib {
  3. protected var x:int = 42;
  4. protected function f():String { return "hello" }
  5. private var _i:int = 5;
  6. protected function get i():int { return _i }
  7. protected function set i(v:int):void { _i = v }
  8. static protected var sx:int = 42;
  9. static protected function sf():String { return "hello" }
  10. static private var _si:int = 5;
  11. static protected function get si():int { return _si }
  12. static protected function set si(v:int):void { _si = v }
  13. }
  14. }