/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package budgetforce; import budgetforce.model.DatabaseManager; import budgetforce.model.Income; import budgetforce.model.Person; import java.util.ArrayList; /** * * @author David */ public class BudgetForce { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here //Income income = new Income(); //DatabaseManager db = new DatabaseManager(); //income = db.getIncomeByID(1); //System.out.print(income.getTimestamp()); } }