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

@@ -29,6 +29,7 @@ import javax.xml.bind.annotation.XmlType;
* devicelist version 1 (currently used by AVM) response:
*
* <pre>
* {@code
* <devicelist version="1">
* <device identifier="##############" id="##" functionbitmask="2944" fwversion="03.83" manufacturer="AVM" productname=
* "FRITZ!DECT 200">
@@ -73,8 +74,8 @@ import javax.xml.bind.annotation.XmlType;
* </hkr>
* </device>
* </devicelist>
*
* <pre>
* }
* </pre>
*
* @author Robert Bausdorf - Initial contribution
* @author Christoph Weitkamp - Added support for groups

View File

@@ -222,8 +222,8 @@ public class HeatingModel implements BatteryModel {
/**
* Converts a celsius value to a FRITZ!Box value.
* Valid celsius values: 8 to 28 °C > 16 to 56
* 16 <= 8°C, 17 = 8.5°C...... 56 >= 28°C, 254 = ON, 253 = OFF
* Valid celsius values: 8 to 28 °C > 16 to 56,
* 16 &lt;= 8°C, 17 = 8.5°C...... 56 >= 28°C, 254 = ON, 253 = OFF
*
* @param celsiusValue The celsius value to be converted
* @return The FRITZ!Box value

View File

@@ -220,7 +220,7 @@ public class FritzAhaWebInterface {
* Constructs an URL from the stored information, a specified path and a specified argument string
*
* @param path Path to include in URL
* @param args String of arguments, in standard HTTP format (arg1=value1&arg2=value2&...)
* @param args String of arguments, in standard HTTP format ({@code arg1=value1&arg2=value2&...})
* @return URL
*/
public String getURL(String path, String args) {