forked from sxg133/sfdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmethodinfo.py
More file actions
40 lines (36 loc) · 773 Bytes
/
methodinfo.py
File metadata and controls
40 lines (36 loc) · 773 Bytes
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
34
35
36
37
38
39
40
class ClassInfo:
def __init__(self):
self.name = ''
self.description = ''
self.authors = []
self.since = ''
self.methods = []
self.is_interface = False
self.is_abstract = False
self.properties = []
self.version_number = ''
self.version_date = ''
class MethodInfo:
def __init__(self):
self.name = ''
self.description = ''
self.scope = ''
self.params = []
self.return_description = ''
self.return_type = ''
self.is_constructor = False
self.overload_number = 0
class ParamInfo:
def __init__(self):
self.name = ''
self.description = ''
self.param_type = ''
class Author:
def __init__(self):
self.name = ''
self.email = ''
class PropertyInfo:
def __init__(self):
self.name = ''
self.property_type = ''
self.scope = ''