Created
January 28, 2018 09:14
-
-
Save anonymous/5102a20c3fdfc624f341a6158f94e089 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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