Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2019
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.58 KB | None | 0 0
  1. public class Weather {
  2.     private String weather_state_name;
  3.     private int the_temp;
  4.     private float air_pressure;
  5.  
  6.     public String getWeather_state_name() { return weather_state_name; }
  7.     public void setWeather_state_name(String weather_state_name) { this.weather_state_name = weather_state_name; }
  8.  
  9.     public int getThe_temp() { return the_temp; }
  10.     public void setThe_temp(int the_temp) { this.the_temp = the_temp; }
  11.  
  12.     public float getAir_pressure() { return air_pressure; }
  13.     public void setAir_pressure(float air_pressure) { this.air_pressure = air_pressure; }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement