Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHossfeld committed Jan 23, 2019
2 parents 3577ed4 + 0f1bb54 commit 0121e65
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions nalu/src/main/java/com/github/nalukit/nalu/client/Nalu.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ public static boolean isUsingColonForParametersInUrl() {
* Comparing route '/app/person/3/edit/ with '/app/person/*/edit'
* will return true
* <p>
* Comparing route '/app/person/3/edit/ with '/app/person/edit/*&#47'
* Comparing route '/app/person/3/edit/ with '/app/person/edit/*&#47;'
* will return false.
* <p>
* Comparing route '/app/person/3/edit/ with '/app/person/*&#47/*&#47'
* Comparing route '/app/person/3/edit/ with '/app/person/*&#47;/*&#47;'
* will return true.
*
* @param route the route containing parameter values instead of '*'
Expand All @@ -73,10 +73,10 @@ public static boolean match(String route,
* Comparing route '/app/person/3/edit/ with '/app/person/*&#47;edit'
* will return true
* <p>
* Comparing route '/app/person/3/edit/ with '/app/person/edit/*&#47'
* Comparing route '/app/person/3/edit/ with '/app/person/edit/*&#47;'
* will return false.
* <p>
* Comparing route '/app/person/3/edit/ with '/app/person/*&#47/*&#47'
* Comparing route '/app/person/3/edit/ with '/app/person/*&#47;/*&#47;'
* will return true.
*
* @param route the route containing parameter values instead of '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public W asElement() {
* Method will be called in case the element is attached to the DOM.
* <p>
* The method is used by the framework!
* <p>>
* <p>
* <b>DO NOT CALL THIS METHOD! THIS WILL LEAD TO UNEXPECTED BEHAVIOR!</b>
*/
@NaluInternalUse
Expand All @@ -76,7 +76,7 @@ public final void onAttach() {
* Method will be called in case the element is removed from the DOM
* <p>
* The method is used by the framework!
* <p>>
* <p>
* <b>DO NOT CALL THIS METHOD! THIS WILL LEAD TO UNEXPECTED BEHAVIOR!</b>
*/
@NaluInternalUse
Expand All @@ -102,7 +102,7 @@ public String mayStop() {
* stop-method f the controller is called
* <p>
* The method is used by the framework!
* <p>>
* <p>
* <b>DO NOT CALL THIS METHOD! THIS WILL LEAD TO UNEXPECTED BEHAVIOR!</b>
*/
@NaluInternalUse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ private void route(String newRoute,
*
* @param route route to navigate to
* @param parms parameters of the route
* @return
* @return generate String of new route
*/
public String generate(String route,
String... parms) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ public class RouterUtils {
* Comparing route '/app/person/3/edit/ with '/app/person/*&#47;edit'
* will return true
* <p>
* Comparing route '/app/person/3/edit/ with '/app/person/edit/*&#47'
* Comparing route '/app/person/3/edit/ with '/app/person/edit/*&#47;'
* will return false.
* <p>
* Comparing route '/app/person/3/edit/ with '/app/person/*&#47/*&#47'
* Comparing route '/app/person/3/edit/ with '/app/person/*&#47;/*&#47;'
* will return true.
*
* @param route the route containing parameter values instead of '*'
Expand All @@ -43,10 +43,10 @@ public static boolean match(String route,
* Comparing route '/app/person/3/edit/ with '/app/person/*&#47;edit'
* will return true
* <p>
* Comparing route '/app/person/3/edit/ with '/app/person/edit/*&#47'
* Comparing route '/app/person/3/edit/ with '/app/person/edit/*&#47;'
* will return false.
* <p>
* Comparing route '/app/person/3/edit/ with '/app/person/*&#47/*&#47'
* Comparing route '/app/person/3/edit/ with '/app/person/*&#47;/*&#47;'
* will return true.
*
* @param route the route containing parameter values instead of '*'
Expand Down

0 comments on commit 0121e65

Please sign in to comment.