org.eclipse.jdt.internal.compiler.codegen.AttributeNamesConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client-compiler-deps Show documentation
Show all versions of vaadin-client-compiler-deps Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-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$
final char[] StackMapTableName = "StackMapTable".toCharArray(); //$NON-NLS-1$
final char[] InconsistentHierarchy = "InconsistentHierarchy".toCharArray(); //$NON-NLS-1$
final char[] VarargsName = "Varargs".toCharArray(); //$NON-NLS-1$
final char[] StackMapName = "StackMap".toCharArray(); //$NON-NLS-1$
final char[] MissingTypesName = "MissingTypes".toCharArray(); //$NON-NLS-1$
}