Android Question Image meaning

R Rioja

Member
Licensed User
Longtime User
When you read documentation such as "Keywords and Views", the name of each Member is preceded by one of three symbols. Their file names are 11.png, 15.png and 19.png. What do these symbols stand for? I believe that 19.png is for properties. Does anyone know for sure?
 

DonManfred

Expert
Licensed User
Longtime User
11 = Variable/object - definition
15 = a callable sub
19 = a property of class. Can be a setter and getter, only getter, only setter
 
Upvote 0

R Rioja

Member
Licensed User
Longtime User
Thanks for the clarification. I suppose that in OOP terminology 11 is for "data", 15 is for "methods" and 19 is for "properties". I guess there is no image for events.
 
Upvote 0
Top