Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package cashregister;
- public class CashRegisterFactory extends Object{
- private static long CASH_REGISTER_ID ;
- public CashRegisterFactory() {}
- public static ICashRegister createCashRegister(){
- return new CashRegister(CASH_REGISTER_ID++);
- }
- }
Add Comment
Please, Sign In to add comment