Android Open Source - MyMoneyMate Expense Entry






From Project

Back to project page MyMoneyMate.

License

The source code is released under:

GNU General Public License

If you think the Android project MyMoneyMate 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

/* *****************************************************************************************************
* Copyright ? 2013 Deepika Punyamurtula/*  w w  w  .j  a v a2s . com*/
* MyMoneyMate - Is an Open Source Android application to keep a record of your expenses.
* This program is free software: you can redistribute it and/or modify it under 
* the terms of the GNU General Public License as published by the Free Software Foundation, 
* either version 3 of the License, or (at your option) any later version.

* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program.
* If not, see http://www.gnu.org/licenses/.
* Please see the file "License" in this distribution for license terms. 
* Below is the link to the License file:
* https://github.com/udeepika/MyMoneyMate/blob/master/License.txt
*
* Author - Deepika Punyamurtula
* email: udeepika@pdx.edu
* Link to repository- https://github.com/udeepika/MyMoneyMate
*References: http://androiddevelopmentworld.blogspot.com/2013/04/android-sqlite-tutorial.html
*       http://www.androidhive.info/2011/11/android-sqlite-database-tutorial/
*       http://javapapers.com/android/android-sqlite-database/
*      
********************************************************************************************************** */


package com.example.moneymeterexample;

public class ExpenseEntry {

  int _id;
  String date;
  String category;
  float amount;
  String notes;

  public ExpenseEntry(int _id,float amount,String category,String date,String notes){
    this._id = _id;
    this.amount = amount;
    this.category = category;
    this.date = date;
    this.notes = notes;
  }
  
  public ExpenseEntry() {
    // TODO Auto-generated constructor stub
  }

  public int getId(){
    return this._id;
  }
  public void setId(int id){
    this._id = id;
  }
  public String getDate(){
    return this.date;
  }
  public void setDate(String date){
    this.date = date;
  }
  public void setCategory(String category){
    this.category = category;
  }
  public String getCategory(){
    return this.category;
  }
  public float getAmount(){
    return this.amount;
  }
  public void setAmount(int amount){
    this.amount = amount;
  }
  public void setNotes(String notes){
    this.notes = notes;
  }
  public String getNotes(){
    return this.notes;
  }

}




Java Source Code List

com.example.moneymeterexample.AChartEnginePieChartActivity.java
com.example.moneymeterexample.AddExpenseActivity.java
com.example.moneymeterexample.CustomViewActivity.java
com.example.moneymeterexample.DataBaseHelper.java
com.example.moneymeterexample.ExpenseEntry.java
com.example.moneymeterexample.MainActivity.java
com.example.moneymeterexample.ViewByCategoryActivity.java
com.example.moneymeterexample.ViewByDateActivity.java
com.example.moneymeterexample.ViewExpenseActivity.java
com.example.moneymeterexample.ViewExpensesOptionsActivity.java