If define a class like.
As I expected the auto complete hides the get and set methods. However it does not show Property1 or Property2.
B4X:
Sub Class_Globals
Private Property1 As String
Private Property2 As Int
End Sub
'Initializes the object. You can add parameters to this method if needed.
Public Sub Initialize
End Sub
Sub setProperty1(Property_1 As String)
Property1 = Property_1
End Sub
Sub getProperty1() As String
Return Property1
End Sub
Sub setProperty2(Property_2 As String)
Property2 = Property_2
End Sub
Sub getProperty2() As String
Return Property2
End Sub
As I expected the auto complete hides the get and set methods. However it does not show Property1 or Property2.