AW: AW: PropertySet.iterator()

2005-04-21 Thread Jan . Materne
sendet am: Donnerstag, 21. April 2005 12:31 > An: Ant Developers List > Betreff: Re: AW: PropertySet.iterator() > > [EMAIL PROTECTED] wrote: > > > I had a project where a code generator inserts one > interface statement > > - and that > > what missing. So

Re: AW: PropertySet.iterator()

2005-04-21 Thread Peter Reilly
[EMAIL PROTECTED] wrote: I had a project where a code generator inserts one interface statement - and that what missing. So I created just an empty interface to make the compiler happy. Couldnt we "backport" the Iterable interface? I played a little with these... - build.xml - src\oata\Iterable.

Re: AW: PropertySet.iterator()

2005-04-21 Thread Steve Loughran
---8-<---8-<---8-<---8-<---8-<---8-<---8-<---8-< -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet am: Donnerstag, 21. April 2005 07:58 An: [EMAIL PROTECTED] Betreff: AW: PropertySet.iterator() I

AW: PropertySet.iterator()

2005-04-21 Thread Jan . Materne
rt java.util.Iterator; public class MyClass implements Iterable { public Iterator iterator() { return null; } } ---8-<---8-<---8-<---8-<---8-<---8-<---8-<---8-< -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[E

AW: PropertySet.iterator()

2005-04-21 Thread Jan . Materne
Title: AW: PropertySet.iterator() I had a project where a code generator inserts one interface statement - and that what missing. So I created just an empty interface to make the compiler happy. Couldnt we "backport" the Iterable interface? I played a little with these... - build