Answer Posted / ravi kumar gupta
JavaBeans are reusable software components for Java.
Practically, they are classes written in the Java
programming language conforming to a particular convention.
They are used to encapsulate many objects into a single
object (the bean), so that they can be passed around as a
single bean object instead of as multiple individual
objects. A JavaBean is a Java Object that is serializable,
has a nullary constructor, and allows access to properties
using getter and setter methods.
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Is null == null in java?
What are the 4 types of characters?
What is predicate in java?
I want to store more than 10 objects in a remote server? Which methodology will follow?
How is Object Oriented Programming different from Procedure Oriented Programming?
What are the methods used to implement for the key object in the hash map?
Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.
Why does it take so much time to access an applet having swing components the first time?
Which list does not allow duplicates in java?
What is a parameter in simple terms?
Define inheritance with reference to java.
Why collection is called framework in java?
Difference difference paint() and paintcomponent()?
What is data string?
What are the advantages of functions?