Hi to everyone.
I have a class with two private strings declared in Class_Globals.
Now I want to declare setters for those properties. This is what I do:
Now when i try to use those setters from another class, there is no autocomplete.
But if I type the commands they are accepted, and the application runs normally.
Is this an expected behavior?
(Working with B4J 7.51).
Andreas.
I have a class with two private strings declared in Class_Globals.
B4X:
Private ExportFolder As String
Private FtpExportFolder As String
B4X:
public Sub setExportFolder(Value As String)
ExportFolder = Value
End Sub
public Sub setFtpExportFolder(Value As String)
FtpExportFolder = Value
End Sub
But if I type the commands they are accepted, and the application runs normally.
Is this an expected behavior?
(Working with B4J 7.51).
Andreas.