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

@@ -110,7 +110,8 @@ public class VeluxActions implements ThingActions {
*
* @param actions ThingActions from the caller
* @param nodeId the node Id in the bridge
* @param relativePercent the target position relative to its current position (-100% <= relativePercent <= +100%)
* @param relativePercent the target position relative to its current position
* ({@code -100% <= relativePercent <= +100%})
* @return true if the command was sent
* @throws IllegalArgumentException if actions is invalid
* @throws IllegalStateException if anything else is wrong

View File

@@ -914,7 +914,8 @@ public class VeluxBridgeHandler extends ExtendedBaseBridgeHandler implements Vel
* Exported method (called by an OpenHAB Rules Action) to move an actuator relative to its current position
*
* @param nodeId the node to be moved
* @param relativePercent relative position change to the current position (-100% <= relativePercent <= +100%)
* @param relativePercent relative position change to the current position
* ({@code -100% <= relativePercent <= +100%})
* @return true if the command could be issued
*/
public boolean moveRelative(int nodeId, int relativePercent) {