Package

Source Code of Test

import java.io.IOException;

import com.demaciandestroyers.themiscore.plugins.weather.*;
import com.demaciandestroyers.themiscore.plugins.weather.xml.DataTimeZone;
import com.demaciandestroyers.themiscore.plugins.weather.xml.DataWeather;
public class Test {

  /**
   * @param args
   */
  public static void main(String[] args) {
    // TODO Auto-generated method stub
    Weather weather;
    try {
      weather = new Weather();
   
    weather.getData();
    DataWeather data1 = weather.getWeatherData();
    DataTimeZone data2 = weather.getTimeZone();
    System.out.println(data1.getWeather().getTempMinC());
    System.out.println(data2.getTime_zone().getUtcOffset());
    }catch (IOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
    }
  }

TOP

Related Classes of Test

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.