Skip to content

Instantly share code, notes, and snippets.

@0x5d
Created September 26, 2015 17:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0x5d/69f89094149690ca258a to your computer and use it in GitHub Desktop.
Save 0x5d/69f89094149690ca258a to your computer and use it in GitHub Desktop.
package com.mycompany.myfirstapp.model.weather;
public class Weather {
private String description;
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment