List of usage examples for javax.swing JTextPane addFocusListener
public synchronized void addFocusListener(FocusListener l)
From source file:edu.snu.leader.discrete.simulator.SimulatorLauncherGUI.java
JTextPane createErrorPane(String errorMessage, Component component, final JTabbedPane tabbedPane, final int tabIndex) { final JTextPane errorPane = new JTextPane(); errorPane.setEditable(false);/* w ww. ja v a 2 s .c om*/ errorPane.setText(errorMessage); errorPane.addFocusListener(new FocusAdapter() { @Override public void focusGained(FocusEvent arg0) { errorPane.setBackground(Color.YELLOW); tabbedPane.setSelectedIndex(tabIndex); } @Override public void focusLost(FocusEvent arg0) { errorPane.setBackground(Color.WHITE); } }); component.requestFocusInWindow(); return errorPane; }