Package com.martinandersson.lesson05

Examples of com.martinandersson.lesson05.ArrayExamples


public class ListUser
{
    public static void main(String[] args) {
        Lista<Product> shoppingList = new ShoppingList();
       
        Product milk = new Product();
        milk.setDescription("A bottle of milk.");
       
        shoppingList.add(milk);
       
        printFirstItem(shoppingList);
       
View Full Code Here

TOP

Related Classes of com.martinandersson.lesson05.ArrayExamples

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.