Java Question How to hide methods from extended classes

corwin42

Expert
Licensed User
Longtime User
I create a class A for my object which extends class B.

In class A I can use @Hide to hide public methods. But all public methods of class B are shown in the IDE. How can I hide public methods from class B?
 

tchart

Well-Known Member
Licensed User
Longtime User
corwin42, did you ever find a successful approach to hiding the other class?
 

DonManfred

Expert
Licensed User
Longtime User
put the other class in -ignore in SLC
 
Top