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
/******************************************************************************* * 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.eclipse.jdt.core.dom;
Common marker interface for AST nodes that represent fragments in doc elements. These are node types that can legitimately be included in TagElement.fragments().
IDocElement: MemberRef MethodRef Name TagElement TextElement 
See Also:
Since:3.11, internal interface since 3.0
@noextendThis interface is not intended to be extended by clients.
@noimplementThis interface is not intended to be implemented by clients.
/** * Common marker interface for AST nodes that represent fragments in doc elements. * These are node types that can legitimately be included in {@link TagElement#fragments()}. * <pre> * IDocElement: * {@link MemberRef} * {@link MethodRef} * {@link Name} * {@link TagElement} * {@link TextElement} * </pre> * * @since 3.11, internal interface since 3.0 * @see TagElement#fragments() * @noextend This interface is not intended to be extended by clients. * @noimplement This interface is not intended to be implemented by clients. */
public interface IDocElement { // marker-type interfaces have no members }