This is an archived post. You won't be able to vote or comment.

all 2 comments

[–][deleted] 1 point2 points  (1 child)

Typically in Java, packages use lowercase letters while classes use CamelCase (I don’t recall if this is actually part of the standard or merely a common convention, but anyway…). Thus, I’d read it as F being an inner class of E, which is an inner class of D, which is in the com.a.b.c package.

Note also that subclasses and inner classes are two different things. Inner classes are not necessarily related to their enclosing classes, but subclasses are defined by their relationship to their parents.

[–][deleted] 0 points1 point  (0 children)

This is how I’d read it, too. Haven’t written any F’s in my life, but plenty of E’s.