All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class benno.account.db.TransactionPart

java.lang.Object
   |
   +----benno.account.db.TransactionPart

public final class TransactionPart
extends Object
implements Serializable
Each Transaction has a TransactionPart for each account that is to be debited/credited. Note that commit stuff is commented out because it is all handled by Transaction at the moment.

Version:
$Revision: 1.12.6.3 $
Author:
Ben Clifford

Variable Index

 o STATUS_EST
symbolises that the part has an estimated value
 o STATUS_NORM
symbolises that the TransactionPart is a normal part.
 o STATUS_REC
symbolises that the part has been reconciled, for example against paper statements

Constructor Index

 o TransactionPart()

Method Index

 o getAccount()
 o getAmount()
 o getDate()
 o getMemo()
 o getStatus()
 o getTransaction()
 o getWorkingCopy()
 o setAccount(Account)
 o setAmount(Amount)
 o setDate(Date)
 o setMemo(String)
 o setStatus(int)
 o setTransaction(Transaction)

Variables

 o STATUS_NORM
 public static final int STATUS_NORM
symbolises that the TransactionPart is a normal part. ie not estimated or cleared

 o STATUS_EST
 public static final int STATUS_EST
symbolises that the part has an estimated value

 o STATUS_REC
 public static final int STATUS_REC
symbolises that the part has been reconciled, for example against paper statements

Constructors

 o TransactionPart
 public TransactionPart()

Methods

 o getWorkingCopy
 public TransactionPart getWorkingCopy()
 o getAmount
 public Amount getAmount()
 o setAmount
 public void setAmount(Amount a)
 o getAccount
 public Account getAccount()
 o setAccount
 public void setAccount(Account a)
 o getDate
 public Date getDate()
 o setDate
 public void setDate(Date d)
 o getMemo
 public String getMemo()
 o setMemo
 public void setMemo(String s)
 o getStatus
 public int getStatus()
 o setStatus
 public void setStatus(int i)
 o setTransaction
 public void setTransaction(Transaction i)
 o getTransaction
 public Transaction getTransaction()

All Packages  Class Hierarchy  This Package  Previous  Next  Index