From 3faced7068a8401b57be8949e80ce4f4da4a0fb5 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Fri, 10 May 2024 00:32:34 +0100 Subject: Format all code, add editorconfig --- src/com/wilko/jaim/TocResponseHandler.java | 33 ++++++++++++++++-------------- 1 file changed, 18 insertions(+), 15 deletions(-) (limited to 'src/com/wilko/jaim/TocResponseHandler.java') diff --git a/src/com/wilko/jaim/TocResponseHandler.java b/src/com/wilko/jaim/TocResponseHandler.java index c6cf920..aa7be37 100644 --- a/src/com/wilko/jaim/TocResponseHandler.java +++ b/src/com/wilko/jaim/TocResponseHandler.java @@ -1,4 +1,4 @@ -/* +/* * (C) 2002 Paul Wilkinson wilko@users.sourceforge.net * * This program is free software; you can redistribute it and/or modify @@ -20,25 +20,28 @@ package com.wilko.jaim; /** - * - * @author paulw + * @author paulw * @version $revision: $ */ public interface TocResponseHandler { - /** Returns true if this response handler can handle the specified response. - *@param Response - the response string from TOC. This is the part of the response before the first ':' - *@return true if the response can be handled + /** + * Returns true if this response handler can handle the specified response. + * + * @param Response - the response string from TOC. This is the part of the response before the first ':' + * @return true if the response can be handled */ - - public boolean canHandle(String Response); - - /** Parse the provided response - *@param Response - the response from the TOC server. This is the full TOC response string - *@return - A TocResponse object that represents this response + + boolean canHandle(String Response); + + /** + * Parse the provided response + * + * @param Response - the response from the TOC server. This is the full TOC response string + * @return - A TocResponse object that represents this response */ - - public TocResponse parseString(String Response); - + + TocResponse parseString(String Response); + } -- cgit v1.2.3-54-g00ecf