can you explain how to use JavaBean in Project

Answers were Sorted based on User's Feedback



can you explain how to use JavaBean in Project..

Answer / koti

java bean is a simple java class
use the project modelview useing (get,set methodimplemet)

Is This Answer Correct ?    7 Yes 0 No

can you explain how to use JavaBean in Project..

Answer / kathir

javaBeans are used to handle the forms. Inside of the
javaBean we can have the private variables. By calling the
setter methods we can give the values for the variables and
by using getter methods we can get the values from the form.
Each and every object of the javaBean is for a single record.

Is This Answer Correct ?    1 Yes 0 No

can you explain how to use JavaBean in Project..

Answer / murali

javabean is same as javaclass but in javabean we are using
only setters and getters methods we cannot use other methods
most of the project we are using setters and getters
because in project we set the data and get the data only
these things will happen most of the times

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More OOPS Interview Questions

Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box

0 Answers  


can main method be overloaded...??? How..????

2 Answers   Satyam,


#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

0 Answers  


What does and I oop mean?

0 Answers  


what is data abstraction with example.

1 Answers  






What are objects in oop?

0 Answers  


what is the difference between virtual function and destoctor?

1 Answers  


what about you? wahat is your object? introduce your self?

1 Answers   Ajmal Perfumes, TCS,


design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }

1 Answers   HSBC,


What is a class and object?

0 Answers  


What is the significance of classes in oop?

0 Answers  


We have a scale and 7 balls. 1 ball is heavier than all the rest. How to determine the heaviest ball with only 3 possible weighing attempts?

8 Answers   IBM, Sage, Vertex,


Categories