[eclipsefinance-subversion] SF.net SVN: eclipsefinance: [20] trunk/net.sf.eclipsefinance.core/src/n
Status: Pre-Alpha
Brought to you by:
yukio7
|
From: <yu...@us...> - 2006-09-20 17:53:43
|
Revision: 20
http://svn.sourceforge.net/eclipsefinance/?rev=20&view=rev
Author: yukio7
Date: 2006-09-20 10:53:36 -0700 (Wed, 20 Sep 2006)
Log Message:
-----------
new: link to transactions
Modified Paths:
--------------
trunk/net.sf.eclipsefinance.core/src/net/sf/eclipsefinance/core/model/Account.java
Modified: trunk/net.sf.eclipsefinance.core/src/net/sf/eclipsefinance/core/model/Account.java
===================================================================
--- trunk/net.sf.eclipsefinance.core/src/net/sf/eclipsefinance/core/model/Account.java 2006-09-20 17:05:25 UTC (rev 19)
+++ trunk/net.sf.eclipsefinance.core/src/net/sf/eclipsefinance/core/model/Account.java 2006-09-20 17:53:36 UTC (rev 20)
@@ -1,6 +1,8 @@
package net.sf.eclipsefinance.core.model;
import java.math.BigDecimal;
+import java.util.ArrayList;
+import java.util.List;
import org.eclipse.core.runtime.PlatformObject;
@@ -12,6 +14,7 @@
private String IBAN = null;
private BigDecimal balance = new BigDecimal("0.0");
private Bank bank = null;
+ List transactionList = new ArrayList();
Account(String name){
this.name = name;
@@ -53,4 +56,12 @@
this.bank = bank;
}
+ public List getTransactionList() {
+ return transactionList;
+ }
+
+ public void setTransactionList(List transactionList) {
+ this.transactionList = transactionList;
+ }
+
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|