]> 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 1a9dabec835c2e6e1e8cec6bd1bf967d7125af1f..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,7 +30,7 @@ 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
@@ -44,21 +44,21 @@ public interface Basket<T extends AddableBasketItem> extends Serializable {
 
        /**
         * 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 ();
@@ -66,7 +66,7 @@ public interface Basket<T extends AddableBasketItem> extends Serializable {
        /**
         * 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
         */
@@ -74,7 +74,7 @@ public interface Basket<T extends AddableBasketItem> extends Serializable {
 
        /**
         * Checks if the basket is empty
-        *
+        * <p>
         * @return Whether the basket is empty
         */
        public boolean isEmpty ();