Improve javadoc for all addons (#15667)

Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
This commit is contained in:
Holger Friedrich
2023-09-30 21:49:12 +02:00
committed by GitHub
parent 0039e391cd
commit cbf4411034
618 changed files with 1106 additions and 1110 deletions

View File

@@ -127,8 +127,6 @@ public interface SVDRPClient {
* Retrieve VDR Version from SVDRP Client
*
* @return VDR Version
* @throws SVDRPConnectionException thrown if connection to VDR failed or was not possible
* @throws SVDRPParseResponseException thrown if something's not OK with SVDRP response
*/
String getSVDRPVersion();
}

View File

@@ -64,7 +64,7 @@ public class SVDRPClientImpl implements SVDRPClient {
*
* Open VDR Socket Connection
*
* @throws IOException if an IO Error occurs
* @throws SVDRPConnectionException if an IO Error occurs
*/
@Override
public void openConnection() throws SVDRPConnectionException, SVDRPParseResponseException {
@@ -117,7 +117,7 @@ public class SVDRPClientImpl implements SVDRPClient {
/**
* Close VDR Socket Connection
*
* @throws IOException if an IO Error occurs
* @throws SVDRPConnectionException if an IO Error occurs
*/
@Override
public void closeConnection() throws SVDRPConnectionException, SVDRPParseResponseException {
@@ -403,7 +403,6 @@ public class SVDRPClientImpl implements SVDRPClient {
* Retrieve VDR Version from SVDRP Client
*
* @return VDR Version
* @throws SVDRPException thrown if something's not OK with SVDRP call
*/
@Override
public String getSVDRPVersion() {

View File

@@ -33,7 +33,6 @@ public class SVDRPTimerList {
*
* @param message SVDRP Client Response
* @return Timer List Object
* @throws SVDRPParseResponseException thrown if response data is not parseable
*/
public static SVDRPTimerList parse(String message) {
SVDRPTimerList timers = new SVDRPTimerList();