Newbie - basic questions about Javabeans

Z

zalek

Hello,
I decided to write a simple application using Javabeans in NetBeans
IDE 6.0.
I created a frame with few buttons and fields.
I gave a name to all fields and buttons. I switched from Design to
Source and I see code like this:

jButton1 = new javax.swing.JButton();
.....
jButton1.setName("b_exit");

The above code cannot be changed.

My questions:
How I should I access object I created - I don't want to use name like
jButton1 - I want to use name I assigned like b_exit.
Is there any example of building simple application using JavaBeans?
Which book do you recommend for learning Javabeans?

Thanks,

Zalek
 
M

Mark Space

zalek said:
How I should I access object I created - I don't want to use name like
jButton1 - I want to use name I assigned like b_exit.

You pretty much have to use jButton1. You can change that name too.
Right click on the component and select "Change variable name".
Is there any example of building simple application using JavaBeans?
Which book do you recommend for learning Javabeans?

This is Swing, not Javabeans. Try to learn Swing. I recommend
_Learning Java_ by O'Reilly, it's a good introduction to Java, including
Swing. Once you get a handle on that, Sun's Tutorial becomes easier to
read and understand.
 
Z

zalek

You pretty much have to use jButton1. You can change that name too.
Right click on the component and select "Change variable name".


This is Swing, not Javabeans. Try to learn Swing. I recommend
_Learning Java_ by O'Reilly, it's a good introduction to Java, including
Swing. Once you get a handle on that, Sun's Tutorial becomes easier to
read and understand.

Mark,

My question was related to Javabeans IDE. In this IDE you build GUI
similar way as in VB or Powerbuilder - you do not use explicitly any
layout manager - IDE is doing this work for you. I created GUI, it is
displayed - my question was how to programaticly change contents of
this GUI.

Zalek
 
C

CK

My question was related to Javabeans IDE. In this IDE you build GUI
similar way as in VB or Powerbuilder - you do not use explicitly any
layout manager - IDE is doing this work for you. I created GUI, it is
displayed - my question was how to programaticly change contents of
this GUI.

Arent you talking about NetBeans?
--
Claus Dragon <[email protected]>
=(UDIC)=
d++ e++ T--
K1!2!3!456!7!S a29
"Coffee is a mocker. So, I am going to mock."

- Me, lately.
 
M

Mark Space

zalek said:
My question was related to Javabeans IDE. In this IDE you build GUI

No, you said "NetBeans". I use NetBeans 6.0.1 and I'm familiar with
Matisse, the GUI builder.

JavaBeans is different from NetBeans. JavaBeans is a spec. NetBeans is
an IDE. Very different.
 
L

Lew

Roedy said:
JavaBeans is an idea that never went anywhere. All that is left of it
is the get/setter naming convention.

That is not fair, nor true. JavaBeans events and property sheets are used
still. By those who know of them. For example, many IDEs use them that way.
 
Z

zalek

Hello,
I decided to write a simple application using Javabeans in NetBeans
IDE 6.0.
I created a frame with few buttons and fields.
I gave a name to all fields and buttons. I switched from Design to
Source and I see code like this:

jButton1 = new javax.swing.JButton();
....
jButton1.setName("b_exit");

The above code cannot be changed.

My questions:
How I should I access object I created - I don't want to use name like
jButton1 - I want to use name I assigned like b_exit.
Is there any example of building simple application using JavaBeans?
Which book do you recommend for learning Javabeans?

Thanks,

Zalek

Thanks for all replies - maybe I didn't explained clearly what was my
problem.
I am using IDE NetBeans to create a JFrame and Java program to use
this JFrame. The problem was that IDE Netbeams created names like
JButton1, JButton2 etc, while I wanted to use "human" names like
t_name or t_user. Using properties of the objects name was not
changed, only command .setName was used.
I found that mouse right click on an object changes object name - this
is what I wanted.
Thanks,

Zalek
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,043
Latest member
CannalabsCBDReview

Latest Threads

Top