I happened about this declaration on the internet and found it really interesting. However I don't know what to search for to get more information about it. If you could tell me a bit about this or what to search for...
(the calling of methods on declaration)
JPanel bluePanel = new JPanel(){{
setBackground(Color.blue);
setLocation(220, 10);
setSize(50, 50);
}};