List of usage examples for java.awt Event LIST_SELECT
int LIST_SELECT
To view the source code for java.awt Event LIST_SELECT.
Click Source Link
From source file:BenchmarkApplet.java
public boolean handleEvent(Event evt) { if (evt.target == testList) { if (evt.id == Event.LIST_SELECT || evt.id == Event.LIST_DESELECT) if (timeEstimate != null) timeEstimate.setText(getTimeEstimate()); }// w w w . j a v a 2s . co m return super.handleEvent(evt); }