Here you can find the source of removeFocus(JComponent component)
Parameter | Description |
---|---|
component | the component |
public static void removeFocus(JComponent component)
//package com.java2s; import javax.swing.*; public class Main { /**//from www. j a v a2s .c o m * Makes sure the component won't receive the focus. * * @param component the component */ public static void removeFocus(JComponent component) { component.setRequestFocusEnabled(false); component.setFocusable(false); } }