/******************************************************************************* * Copyright (c) 2000, 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.internal.compiler.codegen; public interface AttributeNamesConstants { final char[] SyntheticName = "Synthetic".toCharArray(); //$NON-NLS-1$ final char[] ConstantValueName = "ConstantValue".toCharArray(); //$NON-NLS-1$ final char[] LineNumberTableName = "LineNumberTable".toCharArray(); //$NON-NLS-1$ final char[] LocalVariableTableName = "LocalVariableTable".toCharArray(); //$NON-NLS-1$ final char[] InnerClassName = "InnerClasses".toCharArray(); //$NON-NLS-1$ final char[] CodeName = "Code".toCharArray(); //$NON-NLS-1$ final char[] ExceptionsName = "Exceptions".toCharArray(); //$NON-NLS-1$ final char[] SourceName = "SourceFile".toCharArray(); //$NON-NLS-1$ final char[] DeprecatedName = "Deprecated".toCharArray(); //$NON-NLS-1$ final char[] SignatureName = "Signature".toCharArray(); //$NON-NLS-1$ final char[] LocalVariableTypeTableName = "LocalVariableTypeTable".toCharArray(); //$NON-NLS-1$ final char[] EnclosingMethodName = "EnclosingMethod".toCharArray(); //$NON-NLS-1$ final char[] AnnotationDefaultName = "AnnotationDefault".toCharArray(); //$NON-NLS-1$ final char[] RuntimeInvisibleAnnotationsName = "RuntimeInvisibleAnnotations".toCharArray(); //$NON-NLS-1$ final char[] RuntimeVisibleAnnotationsName = "RuntimeVisibleAnnotations".toCharArray(); //$NON-NLS-1$ final char[] RuntimeInvisibleParameterAnnotationsName = "RuntimeInvisibleParameterAnnotations".toCharArray(); //$NON-NLS-1$ final char[] RuntimeVisibleParameterAnnotationsName = "RuntimeVisibleParameterAnnotations".toCharArray(); //$NON-NLS-1$ }