]> git.mxchange.org Git - jcustomer-core.git/blobdiff - src/org/mxchange/jshopcore/wrapper/WrapableCheckout.java
auto-formatted project + updated jars
[jcustomer-core.git] / src / org / mxchange / jshopcore / wrapper / WrapableCheckout.java
index 1ad5a9f60010bfbb63673cc3a01774d7a6a7d4cd..a23f6919f4bb60f7968890dcbcd2b14b61d6aaf1 100644 (file)
@@ -23,35 +23,35 @@ import org.mxchange.jshopcore.model.customer.Customer;
 
 /**
  * An interface for checkout wrapper
- *
+ * <p>
  * @author Roland Haeder
  */
 public interface WrapableCheckout extends Serializable {
 
        /**
         * Getter for customer instance
-        *
+        * <p>
         * @return Customer indstance
         */
        public Customer getCustomer ();
 
        /**
         * Setter for customer instance
-        *
+        * <p>
         * @param customer Customer instance
         */
        public void setCustomer (final Customer customer);
 
        /**
         * Getter for a List of AddableBasktem instances
-        *
+        * <p>
         * @return List with AddableBasketItem instances
         */
        public List<AddableBasketItem> getList ();
 
        /**
         * Setter for a List of AddableBasktem instances
-        *
+        * <p>
         * @param list List with AddableBasketItem instances
         */
        public void setList (final List<AddableBasketItem> list);