Hi guys,

I would like only a confirmation. In the SMX getting started documentation,
we have JDK 1.4.x or greater for deployment (at least for SMX3).

I guess that we need to use pure 1.4 compatible source. Do you confirm ?

For example, I think that I need to use "old" style Iterator such as :

for(Iterator iterator = myList.iterator(); iterator.hasNext(); ) {
   MyObject object = (MyObject)iterator.next();
   ...
}

in place of :
myList<MyObject> = ...;
for(MyObject object:myList) {
   ...
}

Thanks,
Regards
JB
-- 
Jean-Baptiste Onofré
---------------------------------
 HomePage
http://www.nanthrax.net
---------------------------------
 Contacts
[email protected]
[email protected]
---------------------------------
 OpenSource
BuildProcess/AutoDeploy
http://buildprocess.sourceforge.net
Apache ServiceMix
http://servicemix.apache.org
-----------------------------------
PGP : 17D4F086

Reply via email to