Is there an "enabled" property for JPanels?

For example, I have a JPanel that contains buttons. I was wondering if JPanel had an "enabled" property (like in VB6), so the user can't click anything inside the JPanel when the "enabled" property is set to false.
[222 byte] By [WolfAkelaa] at [2007-11-26 22:39:04]
# 1
No, you need to iterate through all the components on the panel and disable them separately.
camickra at 2007-7-10 11:51:36 > top of Java-index,Desktop,Core GUI APIs...
# 2
So what's the property to disable buttons? When I try setEnable(false) for a button, it cannot find the method.
WolfAkelaa at 2007-7-10 11:51:36 > top of Java-index,Desktop,Core GUI APIs...
# 3
Read the API you will find it.
camickra at 2007-7-10 11:51:36 > top of Java-index,Desktop,Core GUI APIs...
# 4
It was setEnabled. XD Thanks.
WolfAkelaa at 2007-7-10 11:51:36 > top of Java-index,Desktop,Core GUI APIs...