What are the steps involved to create a bean

Showing Answers 1 - 3 of 3 Answers

pdommara

  • Sep 5th, 2007
 

public  class  AAA {


private  String str;

public  void  setStr(String mm) {
 this.str=mm;
}

public  String get Str() {
return this.str;
}

}

This  is basic lavel of creating  java bean.

Thanks
Praveen.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions