removing focus from a component

Is there a way to remove focus from a Component or JComponent? I see methods Component.isFocusOwner() and Component.transferFocus() to query and transfer focus, but I don't see one to remove focus completely. Is it possible to do this?
[243 byte] By [@modia] at [2007-11-27 9:22:20]
# 1
Search the API for all methods containing "focus" in the method name and you will find setRequestFocusEnabled(...), setFocusable(...);
camickra at 2007-7-12 22:16:43 > top of Java-index,Desktop,Core GUI APIs...
# 2
I don't want to remove focus permanently with setFocusable(false), I just want to remove it from the component as if transferFocus() had been called, but instead of giving a new component focus just essentially throw the focus away.
@modia at 2007-7-12 22:16:43 > top of Java-index,Desktop,Core GUI APIs...
# 3
I still have no idea what you want to do.Why would you call transferFocus()? If you "throw focus away" (whatever that means) what do you expect to happen?
camickra at 2007-7-12 22:16:43 > top of Java-index,Desktop,Core GUI APIs...