Given the following class containing getters and setters:
class Journal {
String title;
String publisher;
public Journal() { }
// getters and setters
}
How to write a method reference to the constructor of the class Journal?
Enter the correct answer without ; at the end. Do not use spaces in the result.