blob: 5cde1dc43876b5d7aae6b2c98d7651e2c33a0533 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 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.internal.core;
import org.eclipse.jdt.core.IMemberValuePair;
/*
* Element info for an IAnnotation element that originated from source.
*/
public class AnnotationInfo extends SourceRefElementInfo {
/*
* The start position of this annotation's name in the its
* openable's buffer.
*/
public int nameStart= -1;
/*
* The last position of this annotation in the its
* openable's buffer.
*/
public int nameEnd= -1;
/*
* The member-value pairs of this annotation.
*/
public IMemberValuePair[] members;
}