diff --git a/base/src/main/java/atlantafx/base/controls/CustomTextField.java b/base/src/main/java/atlantafx/base/controls/CustomTextField.java index 16dfa2a..4bc3dd0 100755 --- a/base/src/main/java/atlantafx/base/controls/CustomTextField.java +++ b/base/src/main/java/atlantafx/base/controls/CustomTextField.java @@ -58,7 +58,7 @@ public class CustomTextField extends TextField { private final ObjectProperty left = new SimpleObjectProperty<>(this, "left"); /** - * @return An ObjectProperty wrapping the {@link Node} that is placed + * Returns an ObjectProperty wrapping the {@link Node} that is placed * on the left of the text field. */ public final ObjectProperty leftProperty() { @@ -66,7 +66,7 @@ public class CustomTextField extends TextField { } /** - * @return the {@link Node} that is placed on the left of the text field. + * Returns the {@link Node} that is placed on the left of the text field. */ public final Node getLeft() { return left.get(); @@ -89,7 +89,7 @@ public class CustomTextField extends TextField { } /** - * @return The {@link Node} that is placed on the right of the text field. + * Returns the {@link Node} that is placed on the right of the text field. */ public final Node getRight() { return right.get(); diff --git a/base/src/main/java/atlantafx/base/controls/InlineDatePicker.java b/base/src/main/java/atlantafx/base/controls/InlineDatePicker.java index 781a124..a44673f 100755 --- a/base/src/main/java/atlantafx/base/controls/InlineDatePicker.java +++ b/base/src/main/java/atlantafx/base/controls/InlineDatePicker.java @@ -291,7 +291,7 @@ public class InlineDatePicker extends Control { } /** - * @return The CssMetaData associated with this class, which may include the + * Returns the CssMetaData associated with this class, which may include the * CssMetaData of its superclasses. */ public static List> getClassCssMetaData() { diff --git a/base/src/main/java/atlantafx/base/controls/ToggleSwitchSkin.java b/base/src/main/java/atlantafx/base/controls/ToggleSwitchSkin.java index 9c3b972..0cef734 100755 --- a/base/src/main/java/atlantafx/base/controls/ToggleSwitchSkin.java +++ b/base/src/main/java/atlantafx/base/controls/ToggleSwitchSkin.java @@ -232,7 +232,7 @@ public class ToggleSwitchSkin extends SkinBase { } /** - * @return The CssMetaData associated with this class, which may include the + * Returns the CssMetaData associated with this class, which may include the * CssMetaData of its super classes. */ public static List> getClassCssMetaData() {