diff options
author | Matthew Johnson <mjj29@hecate.trinhall.cam.ac.uk> | 2006-11-10 18:40:23 +0000 |
---|---|---|
committer | Matthew Johnson <mjj29@hecate.trinhall.cam.ac.uk> | 2006-11-10 18:40:23 +0000 |
commit | 0b94bfc09ba479b688e87fb2a997285b571810a5 (patch) | |
tree | 51c1fda30f5f7ae4c0c46f3f38c17a9708f374e2 | |
parent | 305fc540ad7f4dbf099f1b3bc85f61d7fac1e7eb (diff) |
no longer needed
-rw-r--r-- | org/freedesktop/dbus/ReturnType.java | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/org/freedesktop/dbus/ReturnType.java b/org/freedesktop/dbus/ReturnType.java deleted file mode 100644 index 492ca80..0000000 --- a/org/freedesktop/dbus/ReturnType.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - D-Bus Java Bindings - Copyright (c) 2005-2006 Matthew Johnson - - This program is free software; you can redistribute it and/or modify it - under the terms of either the GNU General Public License Version 2 or the - Academic Free Licence Version 2.1. - - Full licence texts are included in the COPYING file with this program. -*/ -package org.freedesktop.dbus; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -/** - * Return Type Annotation. - * Declares the D-Bus return signature of methods which return - * Tuple. - * This should be used to annotate all methods returning Tuple and - * should be given an array containing the types of each element: - * <tt>@ReturnType({"ai", "s", "b"}) public Tuple returnsStuff();</tt> - */ -@Retention(RetentionPolicy.RUNTIME) -@Target(ElementType.METHOD) -public @interface ReturnType -{ - /** The D-Bus type signature. */ - String[] value(); -} |