EldiraSesto

CashRegisterFactory

Jun 9th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. package cashregister;
  2.  
  3. public class CashRegisterFactory extends Object{
  4.  
  5.     private static long CASH_REGISTER_ID ;
  6.    
  7.     public CashRegisterFactory() {}
  8.    
  9.  
  10.     public static ICashRegister createCashRegister(){
  11.         return new CashRegister(CASH_REGISTER_ID++);
  12.     }
  13.    
  14.    
  15.    
  16. }
Add Comment
Please, Sign In to add comment