1 /******************************************************************************* 2 * Copyright (c) 2005, 2007 BEA Systems, Inc. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * tyeung@bea.com - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.jdt.internal.compiler.env; 12 13 /** 14 * This represents class file information about an annotation instance. 15 */ 16 public interface IBinaryAnnotation { 17 18 /** 19 * @return the fully qualified name of the annotation type. 20 */ 21 char[] getTypeName(); 22 23 /** 24 * @return the list of element value pairs of the annotation 25 */ 26 IBinaryElementValuePair[] getElementValuePairs(); 27 } 28