Package com.ngt.jopenmetaverse.shared.sim.asset.archiving

Examples of com.ngt.jopenmetaverse.shared.sim.asset.archiving.RegionSettings


    try
    {
    URL fileLocation1 =  getClass().getClassLoader().getResource("data/files/xml/regionsettings.xml");
    File f1 = new File(fileLocation1.getPath());
    FileInputStream fs1 = new FileInputStream(f1);
    RegionSettings rs1 = RegionSettings.FromStream(fs1);
    System.out.println(rs1.TerrainDetail0.toString());
    Assert.assertEquals(rs1.TerrainDetail0, new UUID("98834a27-4edb-44c6-ab98-84bb8c101421"));
   
    }
    catch(Exception e)
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.sim.asset.archiving.RegionSettings

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.