Java Reference
In-Depth Information
19. Deliverable deliverableOne = new Deliverable("Lunar landing module", "Ask the local
garage if they can make a few minor modifications to one of their cars",
2800, 40.0, 35.0);
20.
21. System.out.println("Calculating the cost estimates using the Template Method,
getCostEstimate.");
22. System.out.println();
23. System.out.println("Total cost estimate for: " + primaryTask);
24. System.out.println("\t" + primaryTask.getCostEstimate());
25. System.out.println();
26.
27. System.out.println("Total cost estimate for: " + deliverableOne);
28. System.out.println("\t" + deliverableOne.getCostEstimate());
29. }
30. }
Search WWH ::




Custom Search