view dbus-d-javatests/jsrc/dbustest/NTuple10.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 source

package dbustest;
import org.freedesktop.dbus.Position;
import org.freedesktop.dbus.Tuple;
/** Just a typed container class */
public final class NTuple10 <A,B,C,D,E,F,G,H,I,J> extends Tuple
{
   @Position(0)
   public final A a;
   @Position(1)
   public final B b;
   @Position(2)
   public final C c;
   @Position(3)
   public final D d;
   @Position(4)
   public final E e;
   @Position(5)
   public final F f;
   @Position(6)
   public final G g;
   @Position(7)
   public final H h;
   @Position(8)
   public final I i;
   @Position(9)
   public final J j;
   public NTuple10(A a, B b, C c, D d, E e, F f, G g, H h, I i, J j)
   {
      this.a = a;
      this.b = b;
      this.c = c;
      this.d = d;
      this.e = e;
      this.f = f;
      this.g = g;
      this.h = h;
      this.i = i;
      this.j = j;
   }
}