Java examples for Object Oriented Design:Inner Class
Create static inner class inside a class
class Problem {// ww w . jav a2 s .c om static String s; static class Inner { void testMethod() { s = "Set from Inner"; } } }