Skip to content

Commit 6affd27

Browse files
committed
This is my commit message
Signed-off-by: Christian Koch <[email protected]>
1 parent a63dc13 commit 6affd27

33 files changed

+192
-193
lines changed

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/BoilerConfiguration.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import org.eclipse.jdt.annotation.NonNullByDefault;
1616

17-
/*
17+
/**
1818
* The {@link BoilerConfiguration} class contains fields mapping
1919
* thing configuration parameters.
2020
*
@@ -24,20 +24,20 @@
2424
@NonNullByDefault
2525
public class BoilerConfiguration {
2626

27-
/*
27+
/**
2828
* Refresh interval in seconds
2929
*/
3030
private int refresh = 30;
3131

3232
private int maxTries = 3;
3333
// backwards compatibility and tests
3434

35-
/*
35+
/**
3636
* Subindex to calculate the base adress of the modbus registers
3737
*/
3838
private int subindex = 0;
3939

40-
/*
40+
/**
4141
* Gets refresh period in milliseconds
4242
*/
4343
public long getRefreshMillis() {

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/BufferConfiguration.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import org.eclipse.jdt.annotation.NonNullByDefault;
1616

17-
/*
17+
/**
1818
* The {@link BufferConfiguration} class contains fields mapping
1919
* thing configuration parameters.
2020
*
@@ -23,20 +23,20 @@
2323
*/
2424
@NonNullByDefault
2525
public class BufferConfiguration {
26-
/*
26+
/**
2727
* Refresh interval in seconds
2828
*/
2929
private int refresh = 30;
3030

3131
private int maxTries = 3;
3232
// backwards compatibility and tests
3333

34-
/*
34+
/**
3535
* Subindex to calculate the base adress of the modbus registers
3636
*/
3737
private int subindex = 0;
3838

39-
/*
39+
/**
4040
* Gets refresh period in milliseconds
4141
*/
4242
public long getRefreshMillis() {

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/GeneralConfiguration.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import org.eclipse.jdt.annotation.NonNullByDefault;
1616

17-
/*
17+
/**
1818
* The {@link GeneralConfiguration} class contains fields mapping
1919
* thing configuration parameters.
2020
*
@@ -23,14 +23,14 @@
2323
*/
2424
@NonNullByDefault
2525
public class GeneralConfiguration {
26-
/*
26+
/**
2727
* Refresh interval in seconds
2828
*/
2929
private int refresh = 30;
3030

3131
private int maxTries = 3;// backwards compatibility and tests
3232

33-
/*
33+
/**
3434
* Gets refresh period in milliseconds
3535
*/
3636
public long getRefreshMillis() {

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/HeatingCircuitConfiguration.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import org.eclipse.jdt.annotation.NonNullByDefault;
1616

17-
/*
17+
/**
1818
* The {@link HeatingCircuitConfiguration} class contains fields mapping
1919
* thing configuration parameters.
2020
*
@@ -23,20 +23,20 @@
2323
*/
2424
@NonNullByDefault
2525
public class HeatingCircuitConfiguration {
26-
/*
26+
/**
2727
* Refresh interval in seconds
2828
*/
2929
private int refresh = 30;
3030

3131
private int maxTries = 3;
3232
// backwards compatibility and tests
3333

34-
/*
34+
/**
3535
* Subindex to calculate the base adress of the modbus registers
3636
*/
3737
private int subindex = 0;
3838

39-
/*
39+
/**
4040
* Gets refresh period in milliseconds
4141
*/
4242
public long getRefreshMillis() {

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/HeatpumpConfiguration.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import org.eclipse.jdt.annotation.NonNullByDefault;
1616

17-
/*
17+
/**
1818
* The {@link HeatpumpConfiguration} class contains fields mapping
1919
* thing configuration parameters.
2020
*
@@ -24,7 +24,7 @@
2424
@NonNullByDefault
2525
public class HeatpumpConfiguration {
2626

27-
/*
27+
/**
2828
* Refresh interval in seconds
2929
*/
3030
private int refresh = 30;
@@ -33,12 +33,12 @@ public class HeatpumpConfiguration {
3333

3434
// backwards compatibility and tests
3535

36-
/*
36+
/**
3737
* Subindex to calculate the base adress of the modbus registers
3838
*/
3939
private int subindex = 0;
4040

41-
/*
41+
/**
4242
* Gets refresh period in milliseconds
4343
*/
4444
public long getRefreshMillis() {

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/LambdaBindingConstants.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import org.openhab.binding.modbus.ModbusBindingConstants;
1717
import org.openhab.core.thing.ThingTypeUID;
1818

19-
/*
19+
/**
2020
* The {@link LambdaBindingConstants} class defines common
2121
* constants, which are used across the whole binding.
2222
*

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/LambdaConfiguration.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import org.eclipse.jdt.annotation.NonNullByDefault;
1616

17-
/*
17+
/**
1818
* The {@link LambdaConfiguration} class contains fields mapping
1919
* thing configuration parameters.
2020
*
@@ -23,14 +23,14 @@
2323
*/
2424
@NonNullByDefault
2525
public class LambdaConfiguration {
26-
/*
26+
/**
2727
* Refresh interval in seconds
2828
*/
2929
private int refresh = 30;
3030

3131
private int maxTries = 3;// backwards compatibility and tests
3232

33-
/*
33+
/**
3434
* Gets refresh period in milliseconds
3535
*/
3636
public long getRefreshMillis() {

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/LambdaHandlerFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
import org.slf4j.Logger;
3737
import org.slf4j.LoggerFactory;
3838

39-
/*
39+
/**
4040
* The {@link LambdaHandlerFactory} is responsible for creating things and thing
4141
* handlers.
4242
*

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/dto/AmbientBlock.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
package org.openhab.binding.modbus.lambda.internal.dto;
1414

15-
/*
15+
/**
1616
* Dto class for the Ambient Block
1717
*
1818
* @author Paul Frank - Initial contribution

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/dto/BoilerBlock.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
package org.openhab.binding.modbus.lambda.internal.dto;
1414

15-
/*
15+
/**
1616
* Dto class for the Boiler Block
1717
*
1818
* @author Paul Frank - Initial contribution

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/dto/BoilerReg50Block.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
package org.openhab.binding.modbus.lambda.internal.dto;
1414

15-
/*
15+
/**
1616
* Dto class for the BoilerReg50 Block
1717
*
1818
* @author Paul Frank - Initial contribution

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/dto/BufferBlock.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
package org.openhab.binding.modbus.lambda.internal.dto;
1414

15-
/*
15+
/**
1616
* Dto class for the Buffer Block
1717
*
1818
* @author Paul Frank - Initial contribution

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/dto/BufferReg50Block.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
package org.openhab.binding.modbus.lambda.internal.dto;
1414

15-
/*
15+
/**
1616
* Dto class for the BufferReg50 Block
1717
*
1818
* @author Paul Frank - Initial contribution

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/dto/EManagerBlock.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
package org.openhab.binding.modbus.lambda.internal.dto;
1414

15-
/*
15+
/**
1616
* Dto class for the EManager Block
1717
*
1818
* @author Paul Frank - Initial contribution

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/dto/HeatingCircuitBlock.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
package org.openhab.binding.modbus.lambda.internal.dto;
1414

15-
/*
15+
/**
1616
* Dto class for the HeatingCircuit Block
1717
*
1818
* @author Paul Frank - Initial contribution

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/dto/HeatingCircuitReg50Block.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
package org.openhab.binding.modbus.lambda.internal.dto;
1414

15-
/*
15+
/**
1616
* Dto class for the HeatingCircuitReg50 Block
1717
*
1818
* @author Paul Frank - Initial contribution

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/dto/HeatpumpBlock.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
package org.openhab.binding.modbus.lambda.internal.dto;
1414

15-
/*
15+
/**
1616
* Dto class for the Heatpump Block
1717
*
1818
* @author Paul Frank - Initial contribution

bundles/org.openhab.binding.modbus.lambda/src/main/java/org/openhab/binding/modbus/lambda/internal/dto/HeatpumpReg50Block.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
package org.openhab.binding.modbus.lambda.internal.dto;
1414

15-
/*
15+
/**
1616
* Dto class for the HeatpumpReg50 Block
1717
*
1818
* @author Paul Frank - Initial contribution

0 commit comments

Comments
 (0)