/******************************************************************************* * Copyright (c) 2009 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 * Zend Technologies *******************************************************************************/ package org.eclipse.php.core.compiler; import org.eclipse.dltk.ast.Modifiers; /** * This interface extends DLTK's {@link Modifiers} with PDT-related flags. * */ public interface IPHPModifiers extends Modifiers { /** * Represents non-PHP language element */ public static final int NonPhp = 1 << Modifiers.USER_MODIFIER; /** * Constructor method */ public static final int Constructor = 1 << (Modifiers.USER_MODIFIER + 2); public static final int AccTrait = (1 << Modifiers.USER_MODIFIER + 3); public static final int AccMagicProperty = (1 << Modifiers.USER_MODIFIER + 4); public static final int AccDeprecated = (1 << Modifiers.USER_MODIFIER + 5); public static final int AccAnonymous = (1 << Modifiers.USER_MODIFIER + 6); /** * Method / Function have return or yield statement * * @since 4.0 */ public static final int AccReturn = (1 << Modifiers.USER_MODIFIER + 7); /** * Variadic method * * @since 4.0 */ public static final int AccVariadic = (1 << Modifiers.USER_MODIFIER + 8); /** * Method phpDoc contains inheritdoc tag * * @since 4.1 */ public static final int AccInheritdoc = (1 << Modifiers.USER_MODIFIER + 9); /** * Indicates nullable parameter/return type * * @since 4.1 */ public static final int AccNullable = (1 << Modifiers.USER_MODIFIER + 10); /** * All access modifiers as one for compiler validation * * @since 4.0 */ public static final int AccessMask = AccPublic | AccPrivate | AccProtected; public static final int USER_MODIFIER = Modifiers.USER_MODIFIER + 11; }