blob: b06ab037cfeaaa7f062d486c51e5e67b9bbd3726 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 BEA Systems, Inc.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* wharley@bea.com - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.apt.tests.annotations.apitest;
/**
* Triggers the APIAnnotationProcessor, which will verify that the annotated object
* is assignable to an object of the specified type.
*/
public @interface AssignableTo
{
Class<?> value();
}