Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2ae16c4f592d9e5111a2dbf836d86c4885ee62cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*******************************************************************************
 * Copyright (c) 2005 BEA Systems, Inc. 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    sbandow@bea.com - initial API and implementation
 *    
 *******************************************************************************/

package org.eclipse.jdt.apt.tests.annotations.mirrortest;

public @interface MirrorDeclarationTestAnnotation {
	String s() default "bob"; //$NON-NLS-1$
	int value() default 3;
}

Back to the top