Thanks. I guess my friend coined up that term then. I will ask him what he meant by that.
If I have the following line in main():
trans t1 = new Trans( account1, Operation.WITHDRAWAL, 100 ) ;
and in the class I have
public class trans {
private Operation op ; /*Deposit or Withdrawal*/
private Account acc ; /*account for which a transaction*/
private double amt ; /*amount of money involved in that transaction, deposit or withdrawal*/
}
If I want to proccess the values from the line from main() in the trans class, how would I do that ?