]> 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 ea7e899778a5e361eb4839877e56d9ee8ea6cbc1..28d1eeb2735d84bf428598fc15b48c48b9b79068 100644 (file)
@@ -22,7 +22,7 @@ import org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException;
 
 /**
  * An interface for baskets
- *
+ * <p>
  * @author Roland Haeder<roland@mxchange.org>
  * @param <T> Any addable basket items
  */
@@ -30,9 +30,10 @@ 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
+        * @throws org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException
+        * If the item instance has already been added
         */
        public void addItem (final T item) throws BasketItemAlreadyAddedException;
 
@@ -41,40 +42,40 @@ public interface Basket<T extends AddableBasketItem> extends Serializable {
         */
        public void clear ();
 
-       /**
-        * Checks whether the given item has already been added by checking the
-        * item's id.
-        *
-        * @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 ();
-
        /**
         * Some "getter" for all entries in this basket
-        *
+        * <p>
         * @return Map on all basket items
         */
        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 ();
 }