]> git.mxchange.org Git - jcustomer-core.git/blobdiff - src/org/mxchange/jshopcore/model/category/Category.java
auto-formatted project + updated jars
[jcustomer-core.git] / src / org / mxchange / jshopcore / model / category / Category.java
index 5b47563bb2d9b323537782774984ef75ba8b5bbb..43b2d26e7dc5c151faea3c7f0f958ecbb213d808 100644 (file)
@@ -20,56 +20,56 @@ import java.io.Serializable;
 
 /**
  * An interface for categories
- *
+ * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
 public interface Category extends Serializable {
 
        /**
         * Copies all properties from other category to this
-        *
+        * <p>
         * @param category Source category instance
         */
        public void copyAll (final Category category);
 
        /**
         * Id number of category
-        *
+        * <p>
         * @return the id
         */
        public Long getCategoryId ();
 
        /**
         * Id number of category
-        *
+        * <p>
         * @param id the id to set
         */
        public void setCategoryId (final Long id);
 
        /**
         * Parent category
-        *
+        * <p>
         * @return the parent category
         */
        public Category getParentCategory ();
 
        /**
         * Parent category
-        *
+        * <p>
         * @param parentCategory the parent category to set
         */
        public void setParentCategory (final Category parentCategory);
 
        /**
         * Title of category
-        *
+        * <p>
         * @return the title
         */
        public String getCategoryTitle ();
 
        /**
         * Title of category
-        *
+        * <p>
         * @param title the title to set
         */
        public void setCategoryTitle (final String title);