01: /*******************************************************************************
02: * Copyright (c) 2005, 2007 BEA Systems, Inc.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *******************************************************************************/package org.eclipse.jdt.apt.tests.annotations.valueconversion;
08:
09: public @interface AnnotationWithArray {
10: boolean[] booleans();
11:
12: byte[] bytes();
13:
14: short[] shorts();
15:
16: int[] ints();
17:
18: long[] longs();
19:
20: float[] floats();
21:
22: double[] doubles();
23:
24: char[] chars();
25:
26: String str() default "some string";
27: }
|