]> git.mxchange.org Git - jcustomer-core.git/blobdiff - src/org/mxchange/jshopcore/model/basket/AddableBasketItem.java
Cleanup through inspection + updated jar(s)
[jcustomer-core.git] / src / org / mxchange / jshopcore / model / basket / AddableBasketItem.java
index a7324136133a8fca85ecac13ec774dfb51d809ef..c85178af403b07add11338130ecbe9e037bae9f0 100644 (file)
@@ -32,74 +32,74 @@ public interface AddableBasketItem extends Serializable {
         * @param object Other object to check
         */
        @Override
-       public boolean equals (final Object object);
+        boolean equals (final Object object);
 
        /**
         * Getter for item amount
         * <p>
         * @return the amount
         */
-       public Long getOrderedAmount ();
+       Long getOrderedAmount ();
 
        /**
         * Setter for item amount
         * <p>
         * @param amount the amount to set
         */
-       public void setOrderedAmount (final Long amount);
+       void setOrderedAmount (final Long amount);
 
        /**
         * Getter for entry id (from database backend)
         * <p>
         * @return the id
         */
-       public Long getItemId ();
+       Long getItemId ();
 
        /**
         * Setter for entry id (from database backend)
         * <p>
         * @param id the id to set
         */
-       public void setItemId (final Long id);
+       void setItemId (final Long id);
 
        /**
         * Getter for item type
         * <p>
         * @return the type
         */
-       public String getItemType ();
+       String getItemType ();
 
        /**
         * Setter for item type
         * <p>
         * @param type the type to set
         */
-       public void setItemType (final String type);
+       void setItemType (final String type);
 
        /**
         * Getter for product instance
         * <p>
         * @return the product
         */
-       public Product getItemProduct ();
+       Product getItemProduct ();
 
        /**
         * Setter fo product instance
         * <p>
         * @param product the product to set
         */
-       public void setItemProduct (final Product product);
+       void setItemProduct (final Product product);
 
        /**
         * Hash-code calculattion
         */
        @Override
-       public int hashCode ();
+        int hashCode ();
 
        /**
         * Determines whether the item has a Product instance set
         * <p>
         * @return Whether a Product instance is set
         */
-       public boolean isProductType ();
+       boolean isProductType ();
 }