]> git.mxchange.org Git - jcustomer-core.git/blobdiff - src/org/mxchange/jshopcore/model/basket/AddableBasketItem.java
auto-formatted project + updated jars
[jcustomer-core.git] / src / org / mxchange / jshopcore / model / basket / AddableBasketItem.java
index 023729def73382de7fc0063e262888e90994bf07..a7324136133a8fca85ecac13ec774dfb51d809ef 100644 (file)
@@ -21,14 +21,14 @@ import org.mxchange.jshopcore.model.product.Product;
 
 /**
  * An interface for addable basket items
- *
+ * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
 public interface AddableBasketItem extends Serializable {
 
        /**
         * Check equality on item instance
-        *
+        * <p>
         * @param object Other object to check
         */
        @Override
@@ -36,56 +36,56 @@ public interface AddableBasketItem extends Serializable {
 
        /**
         * Getter for item amount
-        *
+        * <p>
         * @return the amount
         */
        public Long getOrderedAmount ();
 
        /**
         * Setter for item amount
-        *
+        * <p>
         * @param amount the amount to set
         */
        public void setOrderedAmount (final Long amount);
 
        /**
         * Getter for entry id (from database backend)
-        *
+        * <p>
         * @return the id
         */
        public Long getItemId ();
 
        /**
         * Setter for entry id (from database backend)
-        *
+        * <p>
         * @param id the id to set
         */
        public void setItemId (final Long id);
 
        /**
         * Getter for item type
-        *
+        * <p>
         * @return the type
         */
        public String getItemType ();
 
        /**
         * Setter for item type
-        *
+        * <p>
         * @param type the type to set
         */
        public void setItemType (final String type);
 
        /**
         * Getter for product instance
-        *
+        * <p>
         * @return the product
         */
        public Product getItemProduct ();
 
        /**
         * Setter fo product instance
-        *
+        * <p>
         * @param product the product to set
         */
        public void setItemProduct (final Product product);
@@ -98,7 +98,7 @@ public interface AddableBasketItem extends Serializable {
 
        /**
         * Determines whether the item has a Product instance set
-        *
+        * <p>
         * @return Whether a Product instance is set
         */
        public boolean isProductType ();