Skip to content

Instantly share code, notes, and snippets.

@goindwalia
Created May 18, 2017 07:04
Show Gist options
  • Save goindwalia/d0fbff6bfdf4f7201848e50877cbfb94 to your computer and use it in GitHub Desktop.
Save goindwalia/d0fbff6bfdf4f7201848e50877cbfb94 to your computer and use it in GitHub Desktop.
/* Java Code */
class Book {
private String title;
private Author author;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Author getAuthor() {
return author;
}
public void setAuthor(Author author) {
this.author = author;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment