B4J Question B4XLIB: How to hide a class

OliverA

Expert
Licensed User
Longtime User
Is there a means by which some classes can be hidden from access by the IDE? For example, I have two classes A and B that both rely on another class, C for some common functionality, yet C has no other purpose (external access to C is meaningless). Is there a way to hide C from the library user? Please note, this only applies to using the B4XLIB in the IDE. I don't care if the user unzips the file and sees the class, I just don't want it to be accessed by the IDE (user cannot perform a DIM anInstance As C).
 

Filippo

Expert
Licensed User
Longtime User
It is currently not possible.

Now it should be possible:
 
Upvote 0
Top