All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aspectj.org.eclipse.jdt.core.dom.IExtendedModifier Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2004, 2014 IBM Corporation and others.
 *
 * 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.aspectj.org.eclipse.jdt.core.dom;

/**
 * Common interface for AST nodes that represent modifiers or
 * annotations.
 * 
 * IExtendedModifier:
 *   Modifier
 *   Annotation
 * 
* @since 3.1 * @noextend This interface is not intended to be extended by clients. * @noimplement This interface is not intended to be implemented by clients. */ public interface IExtendedModifier { /** * Returns whether this extended modifier is a standard modifier. * * @return true if this is a standard modifier * (instance of {@link Modifier}), and false otherwise */ public boolean isModifier(); /** * Returns whether this extended modifier is an annotation. * * @return true if this is an annotation * (instance of a subclass of {@link Annotation}), and * false otherwise */ public boolean isAnnotation(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy