<< Chapter < Page Chapter >> Page >

Populating the LinkedList collection

A couple of points regarding the fillIt method (shown in Listing 4 ) are worthy of note.

Listing 4 . The fillIt method.
public static void fillIt(Collection ref){ ref.add(new JButton());ref.add(new JButton()); ref.add(new JLabel());ref.add(new JButton()); ref.add(new JButton());ref.add(new JLabel()); Iterator iter = ref.iterator();int cnt = 0; JComponent refVar;while(iter.hasNext()){ refVar = (JComponent)iter.next();if(refVar instanceof JButton){ refVar.setToolTipText("B"+cnt++);}else{ refVar.setToolTipText("L" + cnt++);}//end else }//end while loop}//end fillIt()

The fillIt method begins by calling the add method six times in succession, passing references to new anonymous objects (of types JButton and JLabel) as a parameter to the add method.

Four buttons and two labels

Four of the objects are instantiated from the class named JButton . The other two objects are instantiated from the class named JLabel .

Both JButton and JLabel belong to the javax.swing package. Further, both are subclasses of the class named JComponent .

The toolTipText property

Finally, both classes have a property named toolTipText , which can be set and accessed by calling the following methods on a reference to the object:

void setToolTipText(String text) String getToolTipText()

JButton and JLabel

I chose to use objects of these two classes for illustration purposes simply because they possess the characteristics that I need for this module. Thosecharacteristics are:

  • Both classes subclass the class named JComponent (a common superclass below the Object class).
  • Both classes inherit a property (toolTipText) that can be used to identify them later.

Making the objects distinguishable

After adding the objects' references to the collection, the code in Listing 4 uses the setToolTipText method to store a unique String value in the toolTipText property of the object referred to by each of the elements in the collection.

Identifying the buttons and labels

In addition to storing a unique value in the toolTipText property of the object referred to by each element, the code in Listing 4 also makes it possible to distinguish between the JButton objects and the JLabel objects. This is accomplished by including an upper-case "B" in the propertyvalue for each JButton , and including an upper-case "L" in the property value for each JLabel button.

Display the collection

The code in Listing 3 above calls the showCollection method to display the contents of the populated LinkedList collection. The output produced by the code in Listing 3 is shown below:

Collection contents B0 B1 L2 B3 B4 L5

Each term in the output is the String value of the toolTipText property for a particular object. Hence, there are six terms in the output, onefor each element in the collection.

Copy collection elements into an array

Having completed the preliminaries, we have now reached the point that is the main thrust of this module.

The code in Listing 5 shows how to use the more-complex version of the toArray method to copy the elements in the collection into an array.

Questions & Answers

how to study physic and understand
Ewa Reply
what is conservative force with examples
Moses
what is work
Fredrick Reply
the transfer of energy by a force that causes an object to be displaced; the product of the component of the force in the direction of the displacement and the magnitude of the displacement
AI-Robot
why is it from light to gravity
Esther Reply
difference between model and theory
Esther
Is the ship moving at a constant velocity?
Kamogelo Reply
The full note of modern physics
aluet Reply
introduction to applications of nuclear physics
aluet Reply
the explanation is not in full details
Moses Reply
I need more explanation or all about kinematics
Moses
yes
zephaniah
I need more explanation or all about nuclear physics
aluet
Show that the equal masses particles emarge from collision at right angle by making explicit used of fact that momentum is a vector quantity
Muhammad Reply
yh
Isaac
A wave is described by the function D(x,t)=(1.6cm) sin[(1.2cm^-1(x+6.8cm/st] what are:a.Amplitude b. wavelength c. wave number d. frequency e. period f. velocity of speed.
Majok Reply
what is frontier of physics
Somto Reply
A body is projected upward at an angle 45° 18minutes with the horizontal with an initial speed of 40km per second. In hoe many seconds will the body reach the ground then how far from the point of projection will it strike. At what angle will the horizontal will strike
Gufraan Reply
Suppose hydrogen and oxygen are diffusing through air. A small amount of each is released simultaneously. How much time passes before the hydrogen is 1.00 s ahead of the oxygen? Such differences in arrival times are used as an analytical tool in gas chromatography.
Ezekiel Reply
please explain
Samuel
what's the definition of physics
Mobolaji Reply
what is physics
Nangun Reply
the science concerned with describing the interactions of energy, matter, space, and time; it is especially interested in what fundamental mechanisms underlie every phenomenon
AI-Robot
what is isotopes
Nangun Reply
nuclei having the same Z and different N s
AI-Robot
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with java. OpenStax CNX. Jun 29, 2016 Download for free at https://legacy.cnx.org/content/col11441/1.201
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?

Ask