Improve javadoc for some addons (#15701)

Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
This commit is contained in:
Holger Friedrich
2023-10-08 00:25:04 +02:00
committed by GitHub
parent f8bcfb0c7e
commit f24a4305b8
275 changed files with 547 additions and 406 deletions

View File

@@ -19,8 +19,8 @@ import org.openhab.core.library.types.PercentType;
/**
* The {@link TradfriColor} is used for conversion between color formats.
* Use the static constructors {@link #TradfriColor(int, int, int)} and {@link #TradfriColor(HSBType)} for
* construction.
* Use the static constructors {@link #TradfriColor(Integer, Integer, Integer)} and
* {@link #TradfriColor(HSBType)} for construction.
*
* @author Holger Reichert - Initial contribution
* @author Stefan Triller - Use conversions from HSBType
@@ -52,7 +52,7 @@ public class TradfriColor {
*
* @param xyX x value 0 to 65535
* @param xyY y value 0 to 65535
* @param xyBrightness brightness from 0 to 254
* @param brightness brightness from 0 to 254
*/
public TradfriColor(Integer xyX, Integer xyY, @Nullable Integer brightness) {
this.xyX = xyX;