/******************************************************************************* * Copyright (c) 2006, 2013 Wind River Systems 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: * Wind River Systems - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.dsf.concurrent; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation indicating that the given package, class, method, or field can be * accessed safely only from a DSF executor thread. If declared on a package or type, * a field or method could still be declared with an annotation indicating that it's * thread-safe. * <p> * Note: the runtime retention policy is there to allow automated testing * and validation code. * * @param value The value indicates the method to use to obtain the executor. * It should be null if it cannot be determined from the given object. * * @since 1.0 */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.PACKAGE, ElementType.TYPE, ElementType.METHOD, ElementType.FIELD, ElementType.CONSTRUCTOR}) @Inherited @Documented public @interface ConfinedToDsfExecutor { String value(); }