[Webfunds-commits] java/webfunds/client Transaction.java

Ian Grigg iang@cypherpunks.ai
Sun, 16 Jul 2000 15:37:29 -0400 (AST)


iang        00/07/16 15:37:28

  Modified:    webfunds/client Transaction.java
  Log:
  comments / formatting only

Revision  Changes    Path
1.11      +8 -4      java/webfunds/client/Transaction.java

Index: Transaction.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/client/Transaction.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- Transaction.java	2000/04/13 02:34:42	1.10
+++ Transaction.java	2000/07/16 19:37:28	1.11
@@ -1,5 +1,5 @@
 /*
- * $Id: Transaction.java,v 1.10 2000/04/13 02:34:42 iang Exp $
+ * $Id: Transaction.java,v 1.11 2000/07/16 19:37:28 iang Exp $
  *
  * Copyright (c) Systemics Ltd 1995-1999 on behalf of
  * the WebFunds Development Team.  All Rights Reserved.
@@ -12,7 +12,7 @@
 
 /**
  *  Be very careful with this class - it is serialised :(
- *  It needs to change over to the SOX format.
+ *  It needs to change over to the Encodable.
  */
 public class Transaction
 {
@@ -37,7 +37,11 @@
     String transid;
     int type;
 
-    public Transaction(int type, String transid, ItemId contract, AccountInfo source, AccountInfo target, long amount, byte[] desc, Date date)
+    public Transaction(int type, String transid,
+                       ItemId contract,
+                       AccountInfo source, AccountInfo target,
+                       long amount,
+                       byte[] desc, Date date)
     {
         this.type = type;
         this.transid = transid;
@@ -81,7 +85,7 @@
         return status;
     }
 
-    // see ReceiptTableModel for test of CANCEL
+    /* see ReceiptTableModel for test of CANCEL */
 
     public String getStringStatus()
     {