A
|_A1
| |_parent.java
|_child.java
does parent.java inherits child.java in any possible way?
here A and A1 are packages or directories
does parent.java inherits child.java in any possible way? here A and A1 are packages or directories |
|||||||||||
|
|
Only if Child has an
If so, If files are inside the same directory hierarchy, but not within the same directory, the packages are not considered related, and hence members with default ("package-protected") visibility are not visible. Relevant reading: |
|||||
|
|
Your picture shows folders and java source files. We have one folder Arranging source files (or class file) in filesystem folers does not create or declare relationships between classes. If you want class child.java
parent.java
Note - java naming conventions strongly recommend, that package names are all lower case and class names start with a capital letter. |
|||
|
|
|
NO What I understood is that it is your package/tree hierarchy and you asked for any inheritance. If there is any inheritance, does it look like any inheritance/tree hierarchy? If you destroy the inheritance tree it means there shouldn't be any inherited class under any other irrelevant package or under any other node. In other words, lack of design pattern. If you do this, you will handle the redundant accesibility in package-level and with other packages and so you can't talk anything about OO or any encapsulation in this project |
|||
|
|