Browse Source

:memo: Fixed some JavaDoc warning

Signed-off-by: palexdev <alessandro.parisi406@gmail.com>
palexdev 3 years ago
parent
commit
c7fb383fca

+ 23 - 0
.run/MaterialFX [clean build].run.xml

@@ -0,0 +1,23 @@
+<component name="ProjectRunConfigurationManager">
+    <configuration default="false" name="MaterialFX [clean build]" type="GradleRunConfiguration" factoryName="Gradle">
+        <ExternalSystemSettings>
+            <option name="executionName"/>
+            <option name="externalProjectPath" value="$PROJECT_DIR$"/>
+            <option name="externalSystemIdString" value="GRADLE"/>
+            <option name="scriptParameters" value="-x test"/>
+            <option name="taskDescriptions">
+                <list/>
+            </option>
+            <option name="taskNames">
+                <list>
+                    <option value="clean build"/>
+                </list>
+            </option>
+            <option name="vmOptions" value=""/>
+        </ExternalSystemSettings>
+        <ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
+        <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
+        <DebugAllEnabled>false</DebugAllEnabled>
+        <method v="2"/>
+    </configuration>
+</component>

+ 2 - 4
materialfx/src/main/java/io/github/palexdev/materialfx/effects/Interpolators.java

@@ -54,9 +54,7 @@ public enum Interpolators {
             };
             };
         }
         }
     },
     },
-    EASE_OUT_SINE((t) -> {
-        return Math.sin(t * 3.141592653589793D / 2.0D);
-    }) {
+    EASE_OUT_SINE((t) -> Math.sin(t * 3.141592653589793D / 2.0D)) {
         public Interpolator toInterpolator() {
         public Interpolator toInterpolator() {
             return new Interpolator() {
             return new Interpolator() {
                 protected double curve(double t) {
                 protected double curve(double t) {
@@ -91,7 +89,7 @@ public enum Interpolators {
     }
     }
 
 
     /**
     /**
-     * Converts a Function<Double, Double> to a JavaFX's {@link Interpolator}.
+     * Converts a {@code Function<Double, Double>} to a JavaFX's {@link Interpolator}.
      */
      */
     public abstract Interpolator toInterpolator();
     public abstract Interpolator toInterpolator();
 
 

+ 1 - 1
materialfx/src/main/java/io/github/palexdev/materialfx/skins/MFXContextMenuItemSkin.java

@@ -18,7 +18,7 @@ import javafx.stage.Window;
 
 
 /**
 /**
  * Skin associated with every {@link MFXContextMenuItem} by default.
  * Skin associated with every {@link MFXContextMenuItem} by default.
- * <p><
+ * <p></p>
  * This skin is composed of a top container, which is a {@link HBox},
  * This skin is composed of a top container, which is a {@link HBox},
  * a {@link MFXIconWrapper} to contain the icon and two labels to show
  * a {@link MFXIconWrapper} to contain the icon and two labels to show
  * the item's text and the accelerator.
  * the item's text and the accelerator.

+ 1 - 1
materialfx/src/main/java/io/github/palexdev/materialfx/skins/MFXPaginatedTableViewSkin.java

@@ -13,7 +13,7 @@ import javafx.scene.layout.StackPane;
 
 
 /**
 /**
  * This is the default skin implementation for {@link MFXPaginatedTableView}.
  * This is the default skin implementation for {@link MFXPaginatedTableView}.
- * <p><
+ * <p></p>
  * Extends {@link MFXTableViewSkin} and just modifies the footer node to add a
  * Extends {@link MFXTableViewSkin} and just modifies the footer node to add a
  * {@link MFXPagination} control to it, responsible for changing the current page.
  * {@link MFXPagination} control to it, responsible for changing the current page.
  * <p></p>
  * <p></p>