Note.java :  » App » notes-for-android » com » navjagpal » notes » Android Open Source

Android Open Source » App » notes for android 
notes for android » com » navjagpal » notes » Note.java
package com.navjagpal.notes;

public class Note {
  
  private String title;
  private String contents;

  public Note(String title, String contents) {
    this.title = title;
    this.contents = contents;
  }
  
  public String getTitle() {
    return title;
  }
  
  public String getContents() {
    return contents;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.