// simple nested static class package com.mindprod.practice; import com.mindprod.common11; public class Outer { void anOuterMethod() { /* does nothing */ } // static class, nested inside Outer public static class NestedStatic { void aNestedStaticMethod() { /* does nothing */ } // end of class NestedStatic } // end of class Outer }