Class BudgetItemDetail

java.lang.Object
com.infinitekind.moneydance.model.BudgetItemDetail
All Implemented Interfaces:
java.lang.Comparable<BudgetItemDetail>

public class BudgetItemDetail
extends java.lang.Object
implements java.lang.Comparable<BudgetItemDetail>
For one specific category, holds all the budget information (actual vs. budgeted). Since the user can enter multiple budget items per category, holds the list of all budget items for a single category.
Author:
Kevin Menningen - Mennē Software Solutions, LLC
  • Constructor Details

    • BudgetItemDetail

      public BudgetItemDetail​(int numIntervals, BudgetItem item)
      Constructor when we have a budget item (non-null).
      Parameters:
      numIntervals - The number of date intervals that are covered by the item.
      item - Budget item.
    • BudgetItemDetail

      public BudgetItemDetail​(int numIntervals, Account category)
      Constructor when building an unbudgeted item from a category.
      Parameters:
      numIntervals - The number of date intervals that are covered by the item.
      category - Unbudgeted category.
  • Method Details