Package org.openstreetmap.osmosis.core.database

Examples of org.openstreetmap.osmosis.core.database.RelationMemberCollectionLoader


   
    // Wrap the way node source into a feature populator that can attach them to their
    // owning ways.
    featurePopulators.add(
        new FeaturePopulatorImpl<Relation, RelationMember, DbFeature<RelationMember>>(
            relationMemberIterator, new RelationMemberCollectionLoader()));
   
    return featurePopulators;
  }
View Full Code Here


   
    // Wrap the relation node source into a feature history populator that can attach them to their
    // owning relations.
    featurePopulators.add(
        new FeatureHistoryPopulator<Relation, RelationMember, DbOrderedFeature<RelationMember>>(
            relationNodeIterator, new RelationMemberCollectionLoader()));
   
    return featurePopulators;
  }
View Full Code Here

TOP

Related Classes of org.openstreetmap.osmosis.core.database.RelationMemberCollectionLoader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.