Merge pull request #10 from gunyarakun/fix-invalid-return
[cocotron.git] / QuartzCore / CATransition.m
blob33ccf5b430ee10a21f496381f94c38cb0123a6e9
1 #import <QuartzCore/CATransition.h>
3 @implementation CATransition
5 -(NSString *)type {
6    return _type;
9 -(void)setType:(NSString *)value {
10    value=[value copy];
11    [_type release];
12    _type=value;
15 -(NSString *)subtype {
16    return _subtype;
19 -(void)setSubtype:(NSString *)value {
20    value=[value copy];
21    [_subtype release];
22    _subtype=value;
25 -(float)startProgress {
26   return _startProgress;
29 -(void)setStartProgress:(float)value {
30    _startProgress=value;
33 -(float)endProgress {
34    return _endProgress;
37 -(void)setEndProgress:(float)value {
38    _endProgress=value;
41 @end