I'm reading code from another developer and trying to understand how this code works:

final ChartPanel chartPanel = new ChartPanel(aChart);

chartPanel.addChartMouseListener(new ChartMouseListener() {

   @Override
   public void chartMouseClicked(ChartMouseEvent event) {
      //code
   }

   @Override
   public void chartMouseMoved() {}
});

I know it's basically one long method call, but how exactly does this work? I see a new ChartMouseListener() being instantiated, but what is happening after that?

有帮助吗?

解决方案

An anonymous instance of ChartMouseListener having 2 overridden methods is being registered as a listener with the component.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top