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

org.eclipse.jdt.core.dom.Pattern Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2021, 2023 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.eclipse.jdt.core.dom;

/**
 * Abstract base class of AST nodes that represent patterns.
 * There are several kinds of patterns.
 * 
 * Expression:
 *    {@link TypePattern}, {@link GuardedPattern} and {@link NullPattern}
 *

 * 
* * @since 3.27 * @noreference This class is not intended to be referenced by clients. */ public abstract class Pattern extends Expression { /** * Creates a new AST node for an expression owned by the given AST. *

* N.B. This constructor is package-private. *

* * @param ast the AST that is to own this node */ Pattern(AST ast) { super(ast); supportedOnlyIn21(); } /** * Creates and returns a structural property descriptor for the * "pattern" property declared on the given concrete node type). * * @return the pattern property descriptor */ @SuppressWarnings("rawtypes") static final ChildPropertyDescriptor internalPatternPropertyFactory(Class nodeClass) { return new ChildPropertyDescriptor(nodeClass, "pattern", Javadoc.class, MANDATORY, NO_CYCLE_RISK); //$NON-NLS-1$ } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy