summaryrefslogtreecommitdiff
path: root/java/demo/Database/library/LibraryI.java
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2014-08-14 10:37:16 -0230
committerMatthew Newhook <matthew@zeroc.com>2014-08-14 10:37:16 -0230
commit13c8da45cf4c892a17bda4f224a832bafd8e1bf4 (patch)
treed251dc62af721096338ac5be0ecbeaa825ce0e9e /java/demo/Database/library/LibraryI.java
parentMore fixes to the interrupt test. (diff)
downloadice-13c8da45cf4c892a17bda4f224a832bafd8e1bf4.tar.bz2
ice-13c8da45cf4c892a17bda4f224a832bafd8e1bf4.tar.xz
ice-13c8da45cf4c892a17bda4f224a832bafd8e1bf4.zip
- Cleaned up all demos.
- Fixed all demo warnings. - Fixed applet and swing demo to use invocation timeout, not connect timeouts.
Diffstat (limited to 'java/demo/Database/library/LibraryI.java')
-rw-r--r--java/demo/Database/library/LibraryI.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/java/demo/Database/library/LibraryI.java b/java/demo/Database/library/LibraryI.java
index 6ef3acfc363..b7f91a89e1a 100644
--- a/java/demo/Database/library/LibraryI.java
+++ b/java/demo/Database/library/LibraryI.java
@@ -14,6 +14,7 @@ import Demo.*;
//
class LibraryI extends _LibraryDisp
{
+ @Override
public void
queryByIsbn(String isbn, int n, BookDescriptionSeqHolder first, Ice.IntHolder nrows,
BookQueryResultPrxHolder result, Ice.Current current)
@@ -64,6 +65,7 @@ class LibraryI extends _LibraryDisp
}
}
+ @Override
public void
queryByAuthor(String author, int n, BookDescriptionSeqHolder first, Ice.IntHolder nrows,
BookQueryResultPrxHolder result, Ice.Current current)
@@ -146,6 +148,7 @@ class LibraryI extends _LibraryDisp
}
}
+ @Override
public void
queryByTitle(String title, int n, BookDescriptionSeqHolder first, Ice.IntHolder nrows,
BookQueryResultPrxHolder result, Ice.Current current)
@@ -196,6 +199,7 @@ class LibraryI extends _LibraryDisp
}
}
+ @Override
public BookPrx
createBook(String isbn, String title, java.util.List<String> authors, Ice.Current current)
throws BookExistsException, InvalidISBNException