Improve javadoc for all addons (#15667)
Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
This commit is contained in:
@@ -16,7 +16,7 @@ import org.eclipse.jdt.annotation.NonNullByDefault;
|
||||
import org.openhab.core.thing.ThingTypeUID;
|
||||
|
||||
/**
|
||||
* The {@link OJElectronicsBindingConstants} class defines common constants, which are
|
||||
* The {@link BindingConstants} class defines common constants, which are
|
||||
* used across the whole binding.
|
||||
*
|
||||
* @author Christian Kittel - Initial contribution
|
||||
|
||||
@@ -29,7 +29,7 @@ import org.osgi.service.component.annotations.Component;
|
||||
import org.osgi.service.component.annotations.Reference;
|
||||
|
||||
/**
|
||||
* The {@link ThermostatHandlerFactory} is responsible for creating {@link OJElectronicsThermostatHandler}.
|
||||
* The {@link ThermostatHandlerFactory} is responsible for creating {@link ThermostatHandler}.
|
||||
*
|
||||
* @author Christian Kittel - Initial contribution
|
||||
*/
|
||||
@@ -43,7 +43,7 @@ public class ThermostatHandlerFactory extends BaseThingHandlerFactory {
|
||||
/**
|
||||
* Creates a new factory
|
||||
*
|
||||
* @param httpClientFactory Factory for HttpClient
|
||||
* @param timeZoneProvider
|
||||
*/
|
||||
@Activate
|
||||
public ThermostatHandlerFactory(@Reference TimeZoneProvider timeZoneProvider) {
|
||||
|
||||
@@ -29,7 +29,7 @@ public final class OJGSonBuilder {
|
||||
/**
|
||||
* Gets a correct initialized {@link Gson}
|
||||
*
|
||||
* @return {@link GSon}
|
||||
* @return {@link com.google.gson.GSon}
|
||||
*/
|
||||
public static Gson getGSon() {
|
||||
return new GsonBuilder().setFieldNamingPolicy(FieldNamingPolicy.UPPER_CAMEL_CASE).setPrettyPrinting()
|
||||
|
||||
@@ -16,7 +16,7 @@ import org.eclipse.jdt.annotation.NonNullByDefault;
|
||||
import org.eclipse.jdt.annotation.Nullable;
|
||||
|
||||
/**
|
||||
* The configuration for {@link org.openhab.binding.ojelectronics.internal.OJElectronicsCloudHandler}
|
||||
* The configuration for {@link org.openhab.binding.ojelectronics.internal.OJCloudHandler}
|
||||
*
|
||||
* @author Christian Kittel - Initial contribution
|
||||
*/
|
||||
|
||||
@@ -15,7 +15,7 @@ package org.openhab.binding.ojelectronics.internal.config;
|
||||
import org.eclipse.jdt.annotation.NonNullByDefault;
|
||||
|
||||
/**
|
||||
* The configuration for {@link org.openhab.binding.ojelectronics.internal.OJElectronicsThermostatHandler}
|
||||
* The configuration for {@link org.openhab.binding.ojelectronics.internal.ThermostatHandler}
|
||||
*
|
||||
* @author Christian Kittel - Initial contribution
|
||||
*/
|
||||
|
||||
@@ -65,7 +65,6 @@ public final class RefreshService implements AutoCloseable {
|
||||
*
|
||||
* @param config Configuration of the bridge
|
||||
* @param httpClient HTTP client
|
||||
* @param updateService Service to update the thermostat in the cloud
|
||||
*/
|
||||
public RefreshService(OJElectronicsBridgeConfiguration config, HttpClient httpClient) {
|
||||
this.config = config;
|
||||
@@ -78,7 +77,7 @@ public final class RefreshService implements AutoCloseable {
|
||||
*
|
||||
* @param sessionId Session-Id
|
||||
* @param refreshDone This method is called if refreshing is done.
|
||||
* @param connectionLosed This method is called if no connection could established.
|
||||
* @param connectionLost This method is called if no connection could established.
|
||||
* @param unauthorized This method is called if the result is unauthorized.
|
||||
*/
|
||||
public void start(String sessionId,
|
||||
|
||||
Reference in New Issue
Block a user