-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMethodIdentifier.cls
52 lines (41 loc) · 1.25 KB
/
MethodIdentifier.cls
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
41
42
43
44
45
46
47
48
49
50
51
52
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "MethodIdentifier"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Option Explicit
Implements IMethodIdentifier
Private mVisibility As VisibilityEnum
Private mName As String
Private mCallType As MethodTypeEnum
Public Property Let visibility(Value As VisibilityEnum)
mVisibility = Value
End Property
Public Property Let Name(Value As String)
mName = Value
End Property
Public Property Let callType(Value As MethodTypeEnum)
mCallType = Value
End Property
Public Property Get visibility() As VisibilityEnum
visibility = mVisibility
End Property
Public Property Get Name() As String
Name = mName
End Property
Public Property Get callType() As MethodTypeEnum
callType = mCallType
End Property
Private Property Get IMethodIdentifier_CallType() As MethodTypeEnum
IMethodIdentifier_CallType = Me.callType
End Property
Private Property Get IMethodIdentifier_Name() As String
IMethodIdentifier_Name = Me.Name
End Property
Private Property Get IMethodIdentifier_Visibility() As VisibilityEnum
IMethodIdentifier_Visibility = Me.visibility
End Property