package us.deans.panther; public class ppModel { private String phrase; public ppModel(){ this.phrase = "phrase is not set..."; } public void setPhrase(String phrase){ this.phrase = phrase; } public String getPhrase(){ return this.phrase; } }