Skip to content

Commit

Permalink
use html 5 tags in javadocs.
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmetoz committed Mar 19, 2021
1 parent c3e0399 commit c0cc6c4
Show file tree
Hide file tree
Showing 11 changed files with 110 additions and 98 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public final class CartDiscountReferenceResolutionUtils {
* the mapping from {@link CartDiscount} to {@link CartDiscountDraft} with considering reference
* resolution.
*
* <table summary="Mapping of Reference fields for the reference resolution">
* <table>
* <caption>Mapping of Reference fields for the reference resolution</caption>
* <thead>
* <tr>
* <th>Reference field</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ private CategoryReferenceResolutionUtils() {}
* Returns an {@link List}&lt;{@link CategoryDraft}&gt; consisting of the results of applying the
* mapping from {@link Category} to {@link CategoryDraft} with considering reference resolution.
*
* <table summary="Mapping of Reference fields for the reference resolution">
* <table>
* <caption>Mapping of Reference fields for the reference resolution</caption>
* <thead>
* <tr>
* <th>Reference field</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ public final class CustomerReferenceResolutionUtils {
* Returns a {@link List}&lt;{@link CustomerDraft}&gt; consisting of the results of applying the
* mapping from {@link Customer} to {@link CustomerDraft} with considering reference resolution.
*
* <table summary="Mapping of Reference fields for the reference resolution">
* <table>
* <caption>Mapping of Reference fields for the reference resolution</caption>
* <thead>
* <tr>
* <th>Reference field</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ public final class InventoryReferenceResolutionUtils {
* applying the mapping from {@link InventoryEntry} to {@link InventoryEntryDraft} with
* considering reference resolution.
*
* <table summary="Mapping of Reference fields for the reference resolution">
* <table>
* <caption>Mapping of Reference fields for the reference resolution</caption>
* <thead>
* <tr>
* <th>Reference field</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ public static SyncFilter of() {
*
* <p>Passing the filter has an XOR logic as follows:
*
* <table summary="syncFilter filtering logic">
* <table>
* <caption>syncFilter filtering logic</caption>
* <tr>
* <th> includeOnly </th> <th> actionGroups contains actionGroup </th> <th> passes filter </th>
* </tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public final class ProductReferenceResolutionUtils {
* Returns an {@link List}&lt;{@link ProductDraft}&gt; consisting of the results of applying the
* mapping from {@link Product} to {@link ProductDraft} with considering reference resolution.
*
* <table summary="Mapping of Reference fields for the reference resolution">
* <table>
* <caption>Mapping of Reference fields for the reference resolution</caption>
* <thead>
* <tr>
* <th>Reference field</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -593,145 +593,146 @@ private static List<UpdateAction<Product>> collectAllVariantUpdateActions(
* Publish} or {@link Unpublish} update action as a result in an {@link Optional}. Check the
* calculation table below for all different combinations named as states.
*
* <table summary="Mapping of product publish/unpublish update action calculation">
* <table>
* <caption>Mapping of product publish/unpublish update action calculation</caption>
* <thead>
* <tr>
* <th align="center">State</th>
* <th align="center">New draft publish</th>
* <th align="center">Old product publish</th>
* <th align="center">New update actions</th>
* <th align="center">Old product hasStagedChanges</th>
* <th align="center">Action</th>
* <th>State</th>
* <th>New draft publish</th>
* <th>Old product publish</th>
* <th>New update actions</th>
* <th>Old product hasStagedChanges</th>
* <th>Action</th>
* </tr>
* </thead>
* <tbody>
* <tr>
* <td>State 1</td>
* <td align="center">false</td>
* <td align="center">false</td>
* <td align="center">false</td>
* <td align="center">false</td>
* <td align="center">-</td>
* <td>false</td>
* <td>false</td>
* <td>false</td>
* <td>false</td>
* <td>-</td>
* </tr>
* <tr>
* <td>State 2</td>
* <td align="center">false</td>
* <td align="center">false</td>
* <td align="center">false</td>
* <td align="center">true</td>
* <td align="center">-</td>
* <td>false</td>
* <td>false</td>
* <td>false</td>
* <td>true</td>
* <td>-</td>
* </tr>
* <tr>
* <td>State 3</td>
* <td align="center">false</td>
* <td align="center">false</td>
* <td align="center">true</td>
* <td align="center">false</td>
* <td align="center">-</td>
* <td>false</td>
* <td>false</td>
* <td>true</td>
* <td>false</td>
* <td>-</td>
* </tr>
* <tr>
* <td>State 4</td>
* <td align="center">false</td>
* <td align="center">false</td>
* <td align="center">true</td>
* <td align="center">true</td>
* <td align="center">-</td>
* <td>false</td>
* <td>false</td>
* <td>true</td>
* <td>true</td>
* <td>-</td>
* </tr>
* <tr>
* <td>State 5</td>
* <td align="center">false</td>
* <td align="center">true</td>
* <td align="center">false</td>
* <td align="center">false</td>
* <td align="center">unpublish</td>
* <td>false</td>
* <td>true</td>
* <td>false</td>
* <td>false</td>
* <td>unpublish</td>
* </tr>
* <tr>
* <td>State 6</td>
* <td align="center">false</td>
* <td align="center">true</td>
* <td align="center">false</td>
* <td align="center">true</td>
* <td align="center">unpublish</td>
* <td>false</td>
* <td>true</td>
* <td>false</td>
* <td>true</td>
* <td>unpublish</td>
* </tr>
* <tr>
* <td>State 7</td>
* <td align="center">false</td>
* <td align="center">true</td>
* <td align="center">true</td>
* <td align="center">false</td>
* <td align="center">unpublish</td>
* <td>false</td>
* <td>true</td>
* <td>true</td>
* <td>false</td>
* <td>unpublish</td>
* </tr>
* <tr>
* <td>State 8</td>
* <td align="center">false</td>
* <td align="center">true</td>
* <td align="center">true</td>
* <td align="center">true</td>
* <td align="center">unpublish</td>
* <td>false</td>
* <td>true</td>
* <td>true</td>
* <td>true</td>
* <td>unpublish</td>
* </tr>
* <tr>
* <td>State 9</td>
* <td align="center">true</td>
* <td align="center">false</td>
* <td align="center">false</td>
* <td align="center">false</td>
* <td align="center">publish</td>
* <td>true</td>
* <td>false</td>
* <td>false</td>
* <td>false</td>
* <td>publish</td>
* </tr>
* <tr>
* <td>State 10</td>
* <td align="center">true</td>
* <td align="center">false</td>
* <td align="center">false</td>
* <td align="center">true</td>
* <td align="center">publish</td>
* <td>true</td>
* <td>false</td>
* <td>false</td>
* <td>true</td>
* <td>publish</td>
* </tr>
* <tr>
* <td>State 11</td>
* <td align="center">true</td>
* <td align="center">false</td>
* <td align="center">true</td>
* <td align="center">false</td>
* <td align="center">publish</td>
* <td>true</td>
* <td>false</td>
* <td>true</td>
* <td>false</td>
* <td>publish</td>
* </tr>
* <tr>
* <td>State 12</td>
* <td align="center">true</td>
* <td align="center">false</td>
* <td align="center">true</td>
* <td align="center">true</td>
* <td align="center">publish</td>
* <td>true</td>
* <td>false</td>
* <td>true</td>
* <td>true</td>
* <td>publish</td>
* </tr>
* <tr>
* <td>State 13</td>
* <td align="center">true</td>
* <td align="center">true</td>
* <td align="center">false</td>
* <td align="center">false</td>
* <td align="center">-</td>
* <td>true</td>
* <td>true</td>
* <td>false</td>
* <td>false</td>
* <td>-</td>
* </tr>
* <tr>
* <td>State 14</td>
* <td align="center">true</td>
* <td align="center">true</td>
* <td align="center">false</td>
* <td align="center">true</td>
* <td align="center">publish</td>
* <td>true</td>
* <td>true</td>
* <td>false</td>
* <td>true</td>
* <td>publish</td>
* </tr>
* <tr>
* <td>State 15</td>
* <td align="center">true</td>
* <td align="center">true</td>
* <td align="center">true</td>
* <td align="center">false</td>
* <td align="center">publish</td>
* <td>true</td>
* <td>true</td>
* <td>true</td>
* <td>false</td>
* <td>publish</td>
* </tr>
* <tr>
* <td>State 16</td>
* <td align="center">true</td>
* <td align="center">true</td>
* <td align="center">true</td>
* <td align="center">true</td>
* <td align="center">publish</td>
* <td>true</td>
* <td>true</td>
* <td>true</td>
* <td>true</td>
* <td>publish</td>
* </tr>
* </tbody>
* </table>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ public final class VariantReferenceResolutionUtils {
* applying the mapping from {@link ProductVariant} to {@link ProductVariantDraft} with
* considering reference resolution.
*
* <table summary="Mapping of Reference fields for the reference resolution">
* <table>
* <caption>Mapping of Reference fields for the reference resolution</caption>
* <thead>
* <tr>
* <th>Reference field</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public final class ProductTypeReferenceResolutionUtils {
* the mapping from {@link ProductType} to {@link ProductTypeDraft} with considering reference
* resolution.
*
* <table summary="Mapping of Reference fields for the reference resolution">
* <table>
* <caption>Mapping of Reference fields for the reference resolution</caption>
* <thead>
* <tr>
* <th>Reference field</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public final class ShoppingListReferenceResolutionUtils {
* the mapping from {@link ShoppingList} to {@link ShoppingListDraft} with considering reference
* resolution.
*
* <table summary="Mapping of Reference fields for the reference resolution">
* <table>
* <caption>Mapping of Reference fields for the reference resolution</caption>
* <thead>
* <tr>
* <th>Reference field</th>
Expand Down Expand Up @@ -92,7 +93,8 @@ public static List<ShoppingListDraft> mapToShoppingListDrafts(
* Returns a @link ShoppingListDraft} consisting of the result of applying the mapping from {@link
* ShoppingList} to {@link ShoppingListDraft} with considering reference resolution.
*
* <table summary="Mapping of Reference fields for the reference resolution">
* <table>
* <caption>Mapping of Reference fields for the reference resolution</caption>
* <thead>
* <tr>
* <th>Reference field</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public final class StateReferenceResolutionUtils {
* Returns an {@link List}&lt;{@link StateDraft}&gt; consisting of the results of applying the
* mapping from {@link State} to {@link StateDraft} with considering reference resolution.
*
* <table summary="Mapping of Reference fields for the reference resolution">
* <table>
* <caption>Mapping of Reference fields for the reference resolution</caption>
* <thead>
* <tr>
* <th>Reference field</th>
Expand Down

0 comments on commit c0cc6c4

Please sign in to comment.