Visibility of classes in subpackages
922750Mar 9 2012 — edited Mar 9 2012A class is defined in a package. What are the ways to access that class in a subpackage without setting its access-specifier as public?
ex: package A has class 'Aclass'. package B is a subpackage of package A and wants to use the class 'Aclass'. what can be the access-specification of 'Aclass' other than public?