Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kepocnhh/c0dc302851f9ee0d739916f99f5f9dcb to your computer and use it in GitHub Desktop.
Save kepocnhh/c0dc302851f9ee0d739916f99f5f9dcb to your computer and use it in GitHub Desktop.
public class UglyClass
{
private int number;
private String name;
private Date date;
public int getNumber()
{
return number;
}
public void setNumber(int number)
{
this.number = number;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
public Date getDate()
{
return date;
}
public void setDate(Date date)
{
this.date = date;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment