<< Chapter < Page Chapter >> Page >

Making the objects distinguishable

After the code in Listing 3 has been executed, the buttons and labels are indistinguishable on the basis of the null value of their toolTipText property.

The code in Listing 4 deals with this issue. This code 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.

Listing 4 . Making the objects distinguishable.
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()

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.

Why populate this way?

This approach to population is, admittedly, a little bit of an overkill for illustrating what I want to illustrate in this program. However, I plan to usethe same fillIt method in the sample program in the next module, and it won't be an overkill there.

Display the collection

The code in Listing 2 above calls the showCollection method to display the contents of the populated LinkedList collection. The showCollection method is shown in Listing 5

Listing 5 . The showCollection method.
void showCollection(Collection ref){ Iterator iter = ref.iterator();while(iter.hasNext()){ System.out.print(((JComponent)iter.next()).getToolTipText() + " "); }//end while loopSystem.out.println(); }//end showCollection

By now, you should have no difficulty understanding the code in Listing 5 . This code gets an iterator on the incoming reference of type Collection . The code then uses that iterator to gain access to each element in succession,displaying the String value of the toolTipText property belonging to a particular object during each iteration.

Downcast is required

Note that the next method of the Iterator interface returns a reference to the next element in the collection, as type Object . (Remember, Generics were not used to populate this collection.)

In order to call the getToolTipText method on the returned reference, the reference must be downcast to type JComponent . Since both JButton and JLabel extend JComponent , and the getToolTipText method is declared in the JComponent class, it is not necessary to be concerned as to whether an object is type JButton or type JLabel to display the value of the toolTipText property. (This is an example of polymorphic behavior based on class inheritance.)

The output for the collection

The output produced by the code in Listing 2 is shown below:

Collection contentsB0 B1 L2 B3 B4 L5

By examining the "B" and "L" characters in this output, you can identify the JButton objects and the JLabel objects.

Questions & Answers

summarize halerambos & holbon
David Reply
the Three stages of Auguste Comte
Clementina Reply
what are agents of socialization
Antonio Reply
sociology of education
Nuhu Reply
definition of sociology of education
Nuhu
what is culture
Abdulrahim Reply
shared beliefs, values, and practices
AI-Robot
What are the two type of scientific method
ogunniran Reply
I'm willing to join you
Aceng Reply
what are the scientific method of sociology
Man
what is socialization
ogunniran Reply
the process wherein people come to understand societal norms and expectations, to accept society's beliefs, and to be aware of societal values
AI-Robot
scientific method in doing research
ogunniran
defimition of sickness in afica
Anita
Cosmology
ogunniran
Hmmm
ogunniran
list and explain the terms that found in society
REMMY Reply
list and explain the terms that found in society
Mukhtar
what are the agents of socialization
Antonio
Family Peer group Institution
Abdulwajud
I mean the definition
Antonio
ways of perceived deviance indifferent society
Naomi Reply
reasons of joining groups
SAM
to bring development to the nation at large
Hyellafiya
entails of consultative and consensus building from others
Gadama
World first Sociologist?
Abu
What is evolutionary model
Muhammad Reply
Evolution models refer to mathematical and computational representations of the processes involved in biological evolution. These models aim to simulate and understand how species change over time through mechanisms such as natural selection, genetic drift, and mutation. Evolutionary models can be u
faruk
what are the modern trends in religious behaviours
Selekeye Reply
what are social norms
Daniel Reply
shared standards of acceptable behavior by the group or appropriate behavior in a particular institution or those behaviors that are acceptable in a society
Lucius
that is how i understood it
Lucius
examples of societal norms
Diamond
Discuss the characteristics of the research located within positivist and the interpretivist paradigm
Tariro Reply
what is Industrialisation
Selekeye Reply
industrialization
Angelo
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