package org.simantics.databoard.tests; import org.simantics.databoard.annotations.Length; /** * * @author Toni Kalajainen */ public class Jotakin7 { class Tmp { public @Length("[0..5]") boolean[] a; public @Length("[0..5]") byte[] b; public @Length("[0..5]") int[] c; public @Length("[0..5]") long[] d; public @Length("[0..5]") float[] e; public @Length("[0..5]") double[] f; public @Length("[0..5]") Object[] g; public @Length("[0..5]") String[] h; } public static void main(String[] args) throws Exception { //Binding tb = Bindings.getBinding(Tmp.class); } }