blob: dbd0ed9013ce22ecf288df217618a5e2034d0d9c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import org.eclipse.pde.api.tools.annotations.NoExtend;
import org.eclipse.pde.api.tools.annotations.NoInstantiate;
import org.eclipse.pde.api.tools.annotations.NoReference;
/**
* Tests all tags are invalid when parent annotation is private or package default
*/
public @interface test13 {
@interface inner1 {
/**
*/
@NoExtend
@NoInstantiate
@NoReference
public static class Clazz {
}
/**
*/
@NoExtend
@NoInstantiate
@NoReference
public interface inter {
}
/**
*/
@NoReference
public int field = 0;
/**
*/
@NoReference
public @interface annot {
}
/**
*/
@NoReference
enum enu {
}
}
}