blob: 1e81b0577e3d8538a0b73fca05974b9b66e3549b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2013 Stephan Herrmann 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:
* Stephan Herrmann - initial API and implementation
* IBM Corporation - bug fixes
*******************************************************************************/
package org.eclipse.jdt.annotation;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PACKAGE;
import static java.lang.annotation.ElementType.TYPE;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation can be applied to a package, type, method or constructor in order to
* define that contained entities for which a null annotation is otherwise lacking
* should be considered as {@link NonNull @NonNull}. Entities affected by
* <code>@NonNullByDefault</code> are:
* <ul>
* <li>method return values</li>
* <li>parameters of a method or constructor</li>
* <li>fields.</li>
* </ul>
* Local variables are <em>not</em> affected.
* <dl>
* <dt>Canceling a default</dt>
* <dd>By using a <code>@NonNullByDefault</code> annotation with the argument <code>false</code>,
* a default from any enclosing scope can be canceled for the element being annotated.
* <dt>Nested defaults</dt>
* <dd>If a <code>@NonNullByDefault</code>
* annotation is used within the scope of another <code>@NonNullByDefault</code>
* annotation, the innermost annotation defines the
* default applicable at any given position (depending on the parameter {@link #value()}).</dd>
* </dl>
* Note that for applying an annotation to a package, a file by the name
* <code>package-info.java</code> is used.
*
* @since 1.0
*/
@Documented
@Retention(RetentionPolicy.CLASS)
@Target({ PACKAGE, TYPE, METHOD, CONSTRUCTOR })
public @interface NonNullByDefault {
/**
* When parameterized with <code>false</code>, the annotation specifies that the current element should not apply
* any default to un-annotated types.
*/
boolean value() default true;
}