Package org.openstreetmap.osmosis.core.store

Examples of org.openstreetmap.osmosis.core.store.StoreWriter


   * Ensure the instance is correctly written to and read from the store.
   */
  @Test
  public final void testGetInstanceFromStore() {
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    StoreWriter sw = new DataOutputStoreWriter(new DataOutputStream(out));
    StoreClassRegister scr = new DynamicStoreClassRegister();
    OsmUser user1 = new OsmUser(12, "aUser");
    OsmUser user3 = new OsmUser(13, "aUser2");
    OsmUser user5 = new OsmUser(14, "");
    user1.store(sw, scr);
View Full Code Here

TOP

Related Classes of org.openstreetmap.osmosis.core.store.StoreWriter

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.