diff options
author | Matthew Newhook <matthew@zeroc.com> | 2014-08-14 10:37:16 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2014-08-14 10:37:16 -0230 |
commit | 13c8da45cf4c892a17bda4f224a832bafd8e1bf4 (patch) | |
tree | d251dc62af721096338ac5be0ecbeaa825ce0e9e /java/demo/Freeze/library/LibraryI.java | |
parent | More fixes to the interrupt test. (diff) | |
download | ice-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/Freeze/library/LibraryI.java')
-rw-r--r-- | java/demo/Freeze/library/LibraryI.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/java/demo/Freeze/library/LibraryI.java b/java/demo/Freeze/library/LibraryI.java index 99decf1a68d..c7d99d0f549 100644 --- a/java/demo/Freeze/library/LibraryI.java +++ b/java/demo/Freeze/library/LibraryI.java @@ -11,6 +11,7 @@ import Demo.*; class LibraryI extends _LibraryDisp { + @Override public synchronized BookPrx createBook(BookDescription description, Ice.Current current) throws DatabaseException, BookExistsException @@ -81,6 +82,7 @@ class LibraryI extends _LibraryDisp // No locking is necessary since no internal mutable state is // accessed. // + @Override public BookPrx findByIsbn(String isbn, Ice.Current current) throws DatabaseException @@ -101,6 +103,7 @@ class LibraryI extends _LibraryDisp } } + @Override public synchronized BookPrx[] findByAuthors(String authors, Ice.Current current) throws DatabaseException @@ -134,6 +137,7 @@ class LibraryI extends _LibraryDisp } } + @Override public void setEvictorSize(int size, Ice.Current current) throws DatabaseException @@ -144,6 +148,7 @@ class LibraryI extends _LibraryDisp _evictor.setSize(size); } + @Override public void shutdown(Ice.Current current) { |