From cb69a565837d2cef3472675d366fbe9991d5bd8a Mon Sep 17 00:00:00 2001 From: Damian Minkov Date: Mon, 3 Jul 2006 11:54:14 +0000 Subject: [PATCH] change in method signature --- .../service/history/HistoryReader.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/net/java/sip/communicator/service/history/HistoryReader.java b/src/net/java/sip/communicator/service/history/HistoryReader.java index 07df077a9..77eebc382 100644 --- a/src/net/java/sip/communicator/service/history/HistoryReader.java +++ b/src/net/java/sip/communicator/service/history/HistoryReader.java @@ -16,7 +16,7 @@ public interface HistoryReader { /** * Searches the history for all records with timestamp after * startDate. - * + * * @throws RuntimeException * Thrown if an exception occurs during the execution of the * query, such as internal IO error. @@ -26,7 +26,7 @@ public interface HistoryReader { /** * Searches the history for all records with timestamp before * endDate. - * + * * @throws RuntimeException * Thrown if an exception occurs during the execution of the * query, such as internal IO error. @@ -36,7 +36,7 @@ public interface HistoryReader { /** * Searches the history for all records with timestamp between * startDate and endDate. - * + * * @throws RuntimeException * Thrown if an exception occurs during the execution of the * query, such as internal IO error. @@ -46,7 +46,7 @@ QueryResultSet findByPeriod(Date startDate, Date endDate) /** * Searches the history for all records containing the keyword. - * + * * @throws RuntimeException * Thrown if an exception occurs during the execution of the * query, such as internal IO error. @@ -55,7 +55,7 @@ QueryResultSet findByPeriod(Date startDate, Date endDate) /** * Searches the history for all records containing all keywords. - * + * * @throws RuntimeException * Thrown if an exception occurs during the execution of the * query, such as internal IO error. @@ -65,12 +65,12 @@ QueryResultSet findByPeriod(Date startDate, Date endDate) /** * Searches for all history records containing all keywords, * with timestamp between startDate and endDate. - * + * * @throws RuntimeException * Thrown if an exception occurs during the execution of the * query, such as internal IO error. */ - QueryResultSet findByText(Date startDate, Date endDate, String[] keywords) + QueryResultSet findByPeriod(Date startDate, Date endDate, String[] keywords) throws UnsupportedOperationException; }