Possible Duplicate:
What is a Java Bean exactly?
This is a simple question about Java Bean, there is some restriction in the type of classe? For example, a bean can be a abstract class ?
Thanks
Possible Duplicate:
What is a Java Bean exactly?
This is a simple question about Java Bean, there is some restriction in the type of classe? For example, a bean can be a abstract class ?
Thanks
A JavaBean class is a class which respects a number of conventions. But depending on the usage of the class, some conventions are or aren't important. In the strict sense, a JavaBean class
So, in the strict sense, a JavaBean class may not be abstract. But an abstract class can be the superclass of a JavaBean class.