]> git.mxchange.org Git - jcustomer-core.git/blobdiff - src/org/mxchange/jshopcore/model/basket/Basket.java
auto-formatted project + updated jars
[jcustomer-core.git] / src / org / mxchange / jshopcore / model / basket / Basket.java
index 72d9e07fb5d1f519a8c7d330abb99856a00b8d06..28d1eeb2735d84bf428598fc15b48c48b9b79068 100644 (file)
 package org.mxchange.jshopcore.model.basket;
 
 import java.io.Serializable;
-import java.util.Map;
+import java.util.List;
+import org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException;
 
 /**
  * An interface for baskets
- *
- * @author Roland Haeder
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
  * @param <T> Any addable basket items
  */
 public interface Basket<T extends AddableBasketItem> extends Serializable {
 
        /**
         * Adds given item instance to this basket
+        * <p>
         * @param item Item instance to add
+        * @throws org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException
+        * If the item instance has already been added
         */
-       public void addItem (final T item);
-
-       /**
-        * Checks whether the given item as already been added. If the product's
-        * item id number was found in basket, the corresponding item instance will be set
-        *
-        * @param item Item instance to check
-        * @return Whether the given item has been found
-        */
-       public boolean isAdded (final T item);
-
-       /**
-        * Checks if the basket is empty
-        *
-        * @return Whether the basket is empty
-        */
-       public boolean isEmpty ();
+       public void addItem (final T item) throws BasketItemAlreadyAddedException;
 
        /**
-        * Initializes this instance with given ServletContext
+        * Clears the basket instance
         */
-       public void init ();
+       public void clear ();
 
        /**
         * Some "getter" for all entries in this basket
-        *
+        * <p>
         * @return Map on all basket items
         */
-       public Map<Long, T> getAll ();
+       public List<T> getAll ();
 
        /**
         * Getter for last entry
-        *
+        * <p>
         * @return Last added item in basket
         */
        public T getLast ();
 
        /**
         * Getter for last num rows
-        * 
+        * <p>
         * @return Last num rows
         */
        public int getLastNumRows ();
+
+       /**
+        * Checks whether the given item has already been added by checking the
+        * item's id.
+        * <p>
+        * @param item Item instance to check
+        * @return Whether the given item has been found
+        */
+       public boolean isAdded (final T item);
+
+       /**
+        * Checks if the basket is empty
+        * <p>
+        * @return Whether the basket is empty
+        */
+       public boolean isEmpty ();
 }