-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new Classes: *Added the Transaction,
TransactionUI and TestTransaction classes. No methods are created yet.
- Loading branch information
Gavin Li
committed
Feb 20, 2015
1 parent
3e3bc27
commit dc1c3ee
Showing
3 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package controller; | ||
|
||
import view.TransactionUI; | ||
import model.Merchant; | ||
import model.Player; | ||
|
||
public class Transaction | ||
{ | ||
private Player _player; | ||
private Merchant _targetMerchant; | ||
private TransactionUI _window; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package tests; | ||
|
||
import junit.framework.TestCase; | ||
|
||
public class TestTransaction extends TestCase | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package view; | ||
|
||
public class TransactionUI { | ||
|
||
} |