Android Open Source - NoteZ Note






From Project

Back to project page NoteZ.

License

The source code is released under:

GNU General Public License

If you think the Android project NoteZ listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.marcelozarate.notez;
/* w ww  . j a  va  2s . com*/
public class Note {

  long id;
    String title;
  String date;
  String content;

  public Note (){
    
  }
  
  public Note(int id, String title, String date, String content) {
    this.id = id;
        this.title = title;
        this.date = date;
        this.content = content;
    }
  
  public Note(String title, String date, String content) {
        this.title = title;
        this.date = date;
        this.content = content;
    }
 
 
    // Setters
    public void setId(long id) {
        this.id = id;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
    
    public void setDate(String date) {
      this.date = date;
    }
    
    public void setContent(String content) {
      this.content = content;
    }
 
    // Getters
    public long getId() {
        return this.id;
    }
 
    public String getTitle() {
        return this.title;
    }
    
    public String getDate() {
        return this.date;
    }
    
    public String getContent() {
      return this.content;
    }
  
}




Java Source Code List

com.marcelozarate.notez.AddNoteActivity.java
com.marcelozarate.notez.EditNoteActivity.java
com.marcelozarate.notez.MainActivity.java
com.marcelozarate.notez.NoteArrayAdapter.java
com.marcelozarate.notez.Note.java
com.marcelozarate.notez.NotesSQLiteHelper.java