Guest User

Untitled

a guest
Oct 17th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package nl.hva.ooad;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. MobileContractBuilder builder = new MobileContractBuilderImpl();
  8.  
  9. MobileContract contract = builder.setNumber(900).setCustomerName("Marcio").setDataQuota(4000).setFreeDataRoaming(true).setInternationalCalls(true).build();
  10.  
  11. System.out.println(contract);
  12.  
  13. }
  14. }
Add Comment
Please, Sign In to add comment