Package org.pollux3d.shared

Source Code of org.pollux3d.shared.JsonLoaderTest

package org.pollux3d.shared;

import java.io.IOException;
import org.codehaus.jackson.JsonGenerationException;
import org.codehaus.jackson.map.JsonMappingException;
import org.pollux3d.client.JsonLoader;

public class JsonLoaderTest
{

  /**
   * @param args
   * @throws IOException
   * @throws JsonMappingException
   * @throws JsonGenerationException
   */
  public static void main(String[] args) throws JsonGenerationException, JsonMappingException, IOException
  {
    JsonLoader loader = new JsonLoader();
    loader.loadSystem();
  }

}
TOP

Related Classes of org.pollux3d.shared.JsonLoaderTest

TOP
Copyright © 2018 www.massapi.com. 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.