28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
return [[[self alloc] initWithClass: class_
condition: condition] autorelease];
}
- initWithClass: (Class)class_
{
Class c = isa;
[self release];
@throw [OFNotImplementedException exceptionWithClass: c
selector: _cmd];
}
- initWithClass: (Class)class_
condition: (OFCondition*)condition_
|
|
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
return [[[self alloc] initWithClass: class_
condition: condition] autorelease];
}
- initWithClass: (Class)class_
{
Class c = [self class];
[self release];
@throw [OFNotImplementedException exceptionWithClass: c
selector: _cmd];
}
- initWithClass: (Class)class_
condition: (OFCondition*)condition_
|