Skip to content

Instantly share code, notes, and snippets.

@wbars
Created April 13, 2015 11:31
Show Gist options
  • Save wbars/72c1d13f356ef8ad2e84 to your computer and use it in GitHub Desktop.
Save wbars/72c1d13f356ef8ad2e84 to your computer and use it in GitHub Desktop.
java-example
public class Main
{
public void main()
{
Test test = new Test();
Test.Inner inner = test.new Inner();
inner.testMethod();
}
}
public class Test
{
public String field;
public class Inner
{
public void testMethod() {
field = 'Hey!';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment