Re: [JPP-Devel] question about getUltimateWrappee()

2010-09-09 Thread Larry Becker
This code has always been wrapped in a mystery to me. Larry On Wed, Sep 8, 2010 at 6:57 PM, Stefan Steiniger sst...@geo.uzh.ch wrote: me neither I think you need to ask Jon Aquino or Martin Davis about this ;) stefan Michaël Michaud wrote: Hi Kevin, The

Re: [JPP-Devel] question about getUltimateWrappee()

2010-09-08 Thread Stefan Steiniger
me neither I think you need to ask Jon Aquino or Martin Davis about this ;) stefan Michaël Michaud wrote: Hi Kevin, The FeatureCollectionWrapper.getUltimateWrappee() looks like this: public FeatureCollection getUltimateWrappee() { FeatureCollection currentWrappee = fc; while

Re: [JPP-Devel] question about getUltimateWrappee()

2010-09-07 Thread Michaël Michaud
Hi Kevin, The FeatureCollectionWrapper.getUltimateWrappee() looks like this: public FeatureCollection getUltimateWrappee() { FeatureCollection currentWrappee = fc; while (currentWrappee instanceof FeatureCollectionWrapper) { currentWrappee = ((FeatureCollectionWrapper)

[JPP-Devel] question about getUltimateWrappee()

2010-09-06 Thread Kevin Neufeld
The FeatureCollectionWrapper.getUltimateWrappee() looks like this: public FeatureCollection getUltimateWrappee() { FeatureCollection currentWrappee = fc; while (currentWrappee instanceof FeatureCollectionWrapper) { currentWrappee = ((FeatureCollectionWrapper) currentWrappee).fc;