Hello Casey,

> for ( PropertyDescriptor pd : info.getPropertyDescriptors() ){

This is an example of the enhanced for loop (foreach) that is
available since J2SE 5.0.  It has the following syntax:

for ( variable : collection ) {
    statement;
    ...
}
The example above is to loop through each element of type
ProperDescrisptor that is returned in the collection by the
info.getPrropertyDescriptiors method.

The topic is covered latter at this course.

HTH

greenbean

--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/javaprogrammingwithpassion?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to