Java - setFocusable Method - Alternatives?

Just wondering if there’s any alternatives I can use for the setFocusable method in Java.

I’m stuck using older versions, and I need something else for compatibility. Running J2SE 1.3.

What are you trying to achieve? Setfocusable is only a object parameter that allows you to focus on it. It doesn’t request the item become focused. If you want to disable a visual item you could setEnable(false) and if you want the item to become focused when a screen loads try requestFocus()