package coahranm.demo;

public class Publication {
	//FIELDS ---------------------------------------------
	private String title;
	
	//CONSTRUCTORS ---------------------------------------------
	Publication(String title) {
		this.title = title;
	}
	
	//METHODS ---------------------------------------------
	public String toString() {
		return title;
	}
	
	public void setTitle(String t) {
		this.title = t;
	}
	public String getTitle() {
		return this.title;
	}
}//class Publication
