-
Notifications
You must be signed in to change notification settings - Fork 28
/
CDOCProperty.h
33 lines (21 loc) · 964 Bytes
/
CDOCProperty.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// -*- mode: ObjC -*-
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
// Copyright (C) 1997-2019 Steve Nygard.
@class CDType;
@interface CDOCProperty : NSObject
- (id)initWithName:(NSString *)name attributes:(NSString *)attributes;
@property (readonly) NSString *name;
@property (readonly) NSString *attributeString;
@property (readonly) CDType *type;
@property (readonly) NSArray *attributes;
@property (strong) NSString *attributeStringAfterType;
@property (nonatomic, readonly) NSString *defaultGetter;
@property (nonatomic, readonly) NSString *defaultSetter;
@property (strong) NSString *customGetter;
@property (strong) NSString *customSetter;
@property (nonatomic, readonly) NSString *getter;
@property (nonatomic, readonly) NSString *setter;
@property (readonly) BOOL isReadOnly;
@property (readonly) BOOL isDynamic;
- (NSComparisonResult)ascendingCompareByName:(CDOCProperty *)other;
@end