Skip to content

Instantly share code, notes, and snippets.

Created January 28, 2018 09:14
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 anonymous/5102a20c3fdfc624f341a6158f94e089 to your computer and use it in GitHub Desktop.
Save anonymous/5102a20c3fdfc624f341a6158f94e089 to your computer and use it in GitHub Desktop.
package com.myawesomepubliclibrary.customer;
final class Book {
private Author author;
private Title title;
public Book(Author author, Title title) {
this.author = author;
this.title = title;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment