diff options
author | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2013-05-23 18:50:35 +0300 |
---|---|---|
committer | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2013-05-23 18:50:35 +0300 |
commit | b211c26d6c8f51a75d3b64b6092284c3847a3a8a (patch) | |
tree | a51b7d816a27f8db492cf9c44f998e2da8176635 /src/net/java/sip/communicator/service/desktop | |
parent | 24e81b82808681c6b5741b14048ef58c4e665e37 (diff) | |
download | jitsi-b211c26d6c8f51a75d3b64b6092284c3847a3a8a.zip jitsi-b211c26d6c8f51a75d3b64b6092284c3847a3a8a.tar.gz jitsi-b211c26d6c8f51a75d3b64b6092284c3847a3a8a.tar.bz2 |
Fixes warnings, removes trailing whitespace, adds @Override annotations.
Diffstat (limited to 'src/net/java/sip/communicator/service/desktop')
-rw-r--r-- | src/net/java/sip/communicator/service/desktop/DesktopService.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/net/java/sip/communicator/service/desktop/DesktopService.java b/src/net/java/sip/communicator/service/desktop/DesktopService.java index 5948cbb..68a3bee 100644 --- a/src/net/java/sip/communicator/service/desktop/DesktopService.java +++ b/src/net/java/sip/communicator/service/desktop/DesktopService.java @@ -18,9 +18,9 @@ public interface DesktopService { /** * Launches the associated application to open the file. - * + * * @param file the file to be opened - * + * * @throws NullPointerException if file is null * @throws IllegalArgumentException if the specified file dosen't exist * @throws UnsupportedOperationException if the current platform does not @@ -38,13 +38,13 @@ public interface DesktopService UnsupportedOperationException, IOException, SecurityException; - + /** * Prints a file with the native desktop printing facility, using the * associated application's print command. - * + * * @param file the file to be opened - * + * * @throws NullPointerException if file is null * @throws IllegalArgumentException if the specified file dosen't exist * @throws UnsupportedOperationException if the current platform does not @@ -65,9 +65,9 @@ public interface DesktopService /** * Launches the associated editor application and opens a file for editing. - * + * * @param file the file to open for editing - * + * * @throws NullPointerException if file is null * @throws IllegalArgumentException if the specified file dosen't exist * @throws UnsupportedOperationException if the current platform does not @@ -85,12 +85,12 @@ public interface DesktopService UnsupportedOperationException, IOException, SecurityException; - + /** * Launches the default browser to display a URI. - * + * * @param uri the URI to be displayed in the user default browser - * + * * @throws NullPointerException if file is null * @throws IllegalArgumentException if the specified file dosen't exist * @throws UnsupportedOperationException if the current platform does not |