Android Open Source - Xpense Cash Flow






From Project

Back to project page Xpense.

License

The source code is released under:

MIT License

If you think the Android project Xpense 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.kevinzhu.xpense;
/* ww w  .j a v a 2 s  .  c  o  m*/
/**
 * Created by kevin on 12/25/14.
 */
public class CashFlow {
    private String m_type; //Expense or Income
    private double m_amount;
    private String m_category;
    private String m_subcategory;
    private String m_cashSource;
    private String m_payDate;
    private String m_comments;
    private String m_objectID;

    public CashFlow(String m_type, double m_amount, String m_category, String m_subcategory, String m_cashSource, String m_payDate, String m_comments, String m_objectID) {
        this.m_type = m_type;
        this.m_amount = m_amount;
        this.m_category = m_category;
        this.m_subcategory = m_subcategory;
        this.m_cashSource = m_cashSource;
        this.m_payDate = m_payDate;
        this.m_comments = m_comments;
        this.m_objectID = m_objectID;
    }
    // Getters


    public String getM_objectID() {
        return m_objectID;
    }

    public String getM_type() {
        return m_type;
    }

    public double getM_amount() {
        return m_amount;
    }

    public String getM_category() {
        return m_category;
    }

    public String getM_subcategory() {
        return m_subcategory;
    }

    public String getM_cashSource() {
        return m_cashSource;
    }

    public String getM_payDate() {
        return m_payDate;
    }

    public String getM_comments() {
        return m_comments;
    }

    // Setters


    public void setM_objectID(String m_objectID) {
        this.m_objectID = m_objectID;
    }

    public void setM_type(String m_type) {
        this.m_type = m_type;
    }

    public void setM_amount(double m_amount) {
        this.m_amount = m_amount;
    }

    public void setM_category(String m_category) {
        this.m_category = m_category;
    }

    public void setM_subcategory(String m_subcategory) {
        this.m_subcategory = m_subcategory;
    }

    public void setM_cashSource(String m_cashSource) {
        this.m_cashSource = m_cashSource;
    }

    public void setM_payDate(String m_payDate) {
        this.m_payDate = m_payDate;
    }

    public void setM_comments(String m_comments) {
        this.m_comments = m_comments;
    }

}




Java Source Code List

com.kevinzhu.xpense.ApplicationTest.java
com.kevinzhu.xpense.CashFlowListAdapter.java
com.kevinzhu.xpense.CashFlow.java
com.kevinzhu.xpense.CashList.java
com.kevinzhu.xpense.DatePickerFragment.java
com.kevinzhu.xpense.Main.java
com.kevinzhu.xpense.NewEntry.java
com.kevinzhu.xpense.SwipeDismissListViewTouchListener.java
com.kevinzhu.xpense.Xpense.java