Home | History | Annotate | Download | only in articles

Lines Matching full:inner

15   <li><a href="#PackageInner">Consider Package Instead of Private Access with Private Inner Classes</a></li>
251 <h2 id="PackageInner">Consider Package Instead of Private Access with Private Inner Classes</h2>
257 private class Inner {
266 Inner in = new Inner();
276 <p>What's important here is that we define a private inner class
277 (<code>Foo$Inner</code>) that directly accesses a private method and a private
282 private members from <code>Foo$Inner</code> to be illegal because
283 <code>Foo</code> and <code>Foo$Inner</code> are different classes, even though
284 the Java language allows an inner class to access an outer class' private
296 <p>The inner class code calls these static methods whenever it needs to
305 overhead by declaring fields and methods accessed by inner classes to have