diff dbus-d-javatests/jsrc/dbustest/DImpl.java @ 6:963d271f7c25

disabled event stuff, to have working example
author Frank Benoit <benoit@tionex.de>
date Sun, 28 Oct 2007 19:35:38 +0100
parents 7c2c75740370
children
line wrap: on
line diff
--- a/dbus-d-javatests/jsrc/dbustest/DImpl.java	Sun Oct 21 19:22:41 2007 +0200
+++ b/dbus-d-javatests/jsrc/dbustest/DImpl.java	Sun Oct 28 19:35:38 2007 +0100
@@ -1,27 +1,15 @@
 package dbustest;
 import org.dsource.dbus.d.Returns;
 import org.freedesktop.dbus.DBusInterface;
-import org.freedesktop.dbus.DBusSignal;
 import org.freedesktop.dbus.UInt16;
 import org.freedesktop.dbus.UInt32;
 import org.freedesktop.dbus.UInt64;
-import org.freedesktop.dbus.exceptions.DBusException;
 public interface DImpl extends DBusInterface
 {
-   public static class testSigI extends DBusSignal
-   {
-      public final int arg1;
-      public testSigI(String path, int arg1) throws DBusException
-      {
-         super(path, arg1);
-         this.arg1 = arg1;
-      }
-   }
 
   public void testV_V();
   @Returns("res")
   public int testI_I(int arg1);
   public NTuple10<Boolean, Byte, Short, UInt16, Integer, UInt32, Long, UInt64, Double, String> testParamAllSimpleTyes(boolean i_bool, byte i_byte, short i_short, UInt16 i_ushort, int i_int, UInt32 i_uint, long i_long, UInt64 i_ulong, double i_double, String i_string);
-  public void triggerSignal(int count);
 
 }