API  1.0.0
CABasicAnimation.j
Go to the documentation of this file.
1 
2 
13 @implementation CABasicAnimation : CAPropertyAnimation
14 {
15  id _fromValue;
16  id _toValue;
17  id _byValue;
18 }
19 
20 - (id)init
21 {
22  self = [super init];
23 
24  _fromValue = nil;
25  _toValue = nil;
26  _byValue = nil;
27 
28  return self;
29 }
30 
35 - (void)setFromValue:(id)aValue
36 {
37  _fromValue = aValue;
38 }
39 
43 - (id)fromValue
44 {
45  return _fromValue;
46 }
47 
52 - (void)setToValue:(id)aValue
53 {
54  _toValue = aValue;
55 }
56 
60 - (id)toValue
61 {
62  return _toValue;
63 }
64 
69 - (void)setByValue:(id)aValue
70 {
71  _byValue = aValue;
72 }
73 
77 - (id)byValue
78 {
79  return _byValue;
80 }
81 
82 @end
id init()
Definition: CALayer.j:126