]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.databoard/scratch/org/simantics/databoard/tests/Jotakin7.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.databoard / scratch / org / simantics / databoard / tests / Jotakin7.java
1 package org.simantics.databoard.tests;
2
3 import org.simantics.databoard.annotations.Length;
4
5 /**
6  *
7  * @author Toni Kalajainen <toni.kalajainen@iki.fi>
8  */
9 public class Jotakin7 {
10         class Tmp {
11                 public @Length("[0..5]") boolean[] a;
12                 public @Length("[0..5]") byte[] b;
13                 public @Length("[0..5]") int[] c;
14                 public @Length("[0..5]") long[] d;
15                 public @Length("[0..5]") float[] e;
16                 public @Length("[0..5]") double[] f;
17                 public @Length("[0..5]") Object[] g;
18                 public @Length("[0..5]") String[] h;
19         }
20
21         public static void main(String[] args) throws Exception {
22                 //Binding tb = Bindings.getBinding(Tmp.class);
23
24         }
25         
26 }