comparison dbus-d-javatests/jsrc/dbustest/NTuple10.java @ 5:7c2c75740370

code generation for signals
author Frank Benoit <benoit@tionex.de>
date Sun, 21 Oct 2007 19:22:41 +0200
parents
children
comparison
equal deleted inserted replaced
4:427c0332a111 5:7c2c75740370
1 package dbustest;
2 import org.freedesktop.dbus.Position;
3 import org.freedesktop.dbus.Tuple;
4 /** Just a typed container class */
5 public final class NTuple10 <A,B,C,D,E,F,G,H,I,J> extends Tuple
6 {
7 @Position(0)
8 public final A a;
9 @Position(1)
10 public final B b;
11 @Position(2)
12 public final C c;
13 @Position(3)
14 public final D d;
15 @Position(4)
16 public final E e;
17 @Position(5)
18 public final F f;
19 @Position(6)
20 public final G g;
21 @Position(7)
22 public final H h;
23 @Position(8)
24 public final I i;
25 @Position(9)
26 public final J j;
27 public NTuple10(A a, B b, C c, D d, E e, F f, G g, H h, I i, J j)
28 {
29 this.a = a;
30 this.b = b;
31 this.c = c;
32 this.d = d;
33 this.e = e;
34 this.f = f;
35 this.g = g;
36 this.h = h;
37 this.i = i;
38 this.j = j;
39 }
40 }