text
stringlengths
30
1.67M
<s> package org . eclipse . jdt . internal . compiler . codegen ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . compiler . ClassFile ; import org . eclipse . jdt . internal . compiler . CompilationResult ; import org . eclipse . jdt . internal . compiler . ast . ...
<s> package org . eclipse . jdt . internal . compiler . codegen ; public class ObjectCache { public Object keyTable [ ] ; public int valueTable [ ] ; int elementSize ; int threshold ; public ObjectCache ( ) { this ( <NUM_LIT> ) ; } public ObjectCache ( int initialCapacity ) { this . elementSize = <NUM_LIT:0> ; this . t...
<s> package org . eclipse . jdt . internal . compiler . codegen ; public class FloatCache { private float keyTable [ ] ; private int valueTable [ ] ; private int elementSize ; public FloatCache ( ) { this ( <NUM_LIT> ) ; } public FloatCache ( int initialCapacity ) { this . elementSize = <NUM_LIT:0> ; this . keyTable = ...
<s> package org . eclipse . jdt . internal . compiler . codegen ; public interface AttributeNamesConstants { final char [ ] SyntheticName = "<STR_LIT>" . toCharArray ( ) ; final char [ ] ConstantValueName = "<STR_LIT>" . toCharArray ( ) ; final char [ ] LineNumberTableName = "<STR_LIT>" . toCharArray ( ) ; final char [...
<s> package org . eclipse . jdt . internal . compiler . codegen ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . HashMap ; import java . util . HashSet ; import java . util . Iterator ; import java . util . Set ; import org . eclipse . jdt . core . compiler . CharOperation ; import ...
<s> package org . eclipse . jdt . internal . compiler . codegen ; public class CachedIndexEntry { public char [ ] signature ; public int index ; public CachedIndexEntry ( char [ ] signature , int index ) { this . signature = signature ; this . index = index ; } } </s>
<s> package org . eclipse . jdt . internal . compiler . codegen ; import java . util . Arrays ; import org . eclipse . jdt . internal . compiler . classfmt . ClassFileConstants ; import org . eclipse . jdt . internal . compiler . lookup . LocalVariableBinding ; public class BranchLabel extends Label { private int [ ] f...
<s> package org . eclipse . jdt . internal . compiler . codegen ; import org . eclipse . jdt . internal . compiler . ast . UnionTypeReference ; import org . eclipse . jdt . internal . compiler . ast . TypeReference ; import org . eclipse . jdt . internal . compiler . lookup . TypeBinding ; public class MultiCatchExcept...
<s> package org . eclipse . jdt . internal . compiler . codegen ; public class CaseLabel extends BranchLabel { public int instructionPosition = POS_NOT_SET ; public CaseLabel ( CodeStream codeStream ) { super ( codeStream ) ; } void branch ( ) { if ( this . position == POS_NOT_SET ) { addForwardReference ( this . codeS...
<s> package org . eclipse . jdt . internal . compiler . codegen ; public interface Opcodes { public static final byte OPC_nop = <NUM_LIT:0> ; public static final byte OPC_aconst_null = <NUM_LIT:1> ; public static final byte OPC_iconst_m1 = <NUM_LIT:2> ; public static final byte OPC_iconst_0 = <NUM_LIT:3> ; public stati...
<s> package org . eclipse . jdt . internal . compiler . codegen ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . compiler . lookup . TypeBinding ; public class ExceptionLabel extends Label { public int ranges [ ] = { POS_NOT_SET , POS_NOT_SET } ; private int count...
<s> package org . eclipse . jdt . core . compiler ; import org . eclipse . jdt . core . compiler . batch . BatchCompiler ; public abstract class CompilationProgress { public abstract void begin ( int remainingWork ) ; public abstract void done ( ) ; public abstract boolean isCanceled ( ) ; public abstract void setTaskN...
<s> package org . eclipse . jdt . core . compiler ; import org . eclipse . jdt . internal . compiler . problem . DefaultProblem ; public abstract class CategorizedProblem implements IProblem { public static final int CAT_UNSPECIFIED = <NUM_LIT:0> ; public static final int CAT_BUILDPATH = <NUM_LIT:10> ; public static fi...
<s> package org . eclipse . jdt . core . compiler ; import org . eclipse . jdt . internal . compiler . lookup . ProblemReasons ; public interface IProblem { String [ ] getArguments ( ) ; int getID ( ) ; String getMessage ( ) ; char [ ] getOriginatingFileName ( ) ; int getSourceEnd ( ) ; int getSourceLineNumber ( ) ; in...
<s> package org . eclipse . jdt . core . compiler ; public class InvalidInputException extends Exception { private static final long serialVersionUID = <NUM_LIT> ; public InvalidInputException ( ) { super ( ) ; } public InvalidInputException ( String message ) { super ( message ) ; } } </s>
<s> package org . eclipse . jdt . core . compiler ; import org . eclipse . jdt . internal . compiler . parser . ScannerHelper ; public final class CharOperation { public static final char [ ] NO_CHAR = new char [ <NUM_LIT:0> ] ; public static final char [ ] [ ] NO_CHAR_CHAR = new char [ <NUM_LIT:0> ] [ ] ; public stati...
<s> package org . eclipse . jdt . core ; import java . io . IOException ; import java . util . Enumeration ; import java . util . zip . ZipEntry ; import java . util . zip . ZipException ; import java . util . zip . ZipFile ; import org . apache . tools . ant . BuildException ; import org . apache . tools . ant . Task ...
<s> package org . eclipse . jdt . core ; import java . io . IOException ; import org . apache . tools . ant . BuildException ; import org . apache . tools . ant . Task ; import org . eclipse . jdt . core . index . JavaIndexer ; import org . eclipse . jdt . internal . antadapter . AntAdapterMessages ; public class Build...
<s> package org . eclipse . jdt . core ; import java . io . File ; import java . io . IOException ; import java . io . PrintWriter ; import java . lang . reflect . Constructor ; import java . lang . reflect . InvocationTargetException ; import java . lang . reflect . Method ; import java . util . ArrayList ; import jav...
<s> package org . eclipse . jdt . internal . antadapter ; import java . text . MessageFormat ; import java . util . Locale ; import java . util . MissingResourceException ; import java . util . ResourceBundle ; public class AntAdapterMessages { private static final String BUNDLE_NAME = "<STR_LIT>" ; private static Reso...
<s> package org . eclipse . jdt . core ; public interface IField extends IMember , IAnnotatable { public Object getConstant ( ) throws JavaModelException ; String getElementName ( ) ; String getKey ( ) ; String getTypeSignature ( ) throws JavaModelException ; boolean isEnumConstant ( ) throws JavaModelException ; boole...
<s> package org . eclipse . jdt . core ; import org . eclipse . core . runtime . IProgressMonitor ; public interface ICodeAssist { void codeComplete ( int offset , ICodeCompletionRequestor requestor ) throws JavaModelException ; void codeComplete ( int offset , ICompletionRequestor requestor ) throws JavaModelException...
<s> package org . eclipse . jdt . core ; import java . util . ArrayList ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . compiler . parser . ScannerHelper ; import org . eclipse . jdt . internal . compiler . util . Util ; public final class Signature { public stat...
<s> package org . eclipse . jdt . core ; import org . eclipse . core . runtime . IProgressMonitor ; public interface ITypeRoot extends IJavaElement , IParent , IOpenable , ISourceReference , ICodeAssist { IType findPrimaryType ( ) ; IJavaElement getElementAt ( int position ) throws JavaModelException ; ICompilationUnit...
<s> package org . eclipse . jdt . core ; public interface IBufferFactory { IBuffer createBuffer ( IOpenable owner ) ; } </s>
<s> package org . eclipse . jdt . core ; import org . eclipse . jdt . internal . compiler . lookup . TypeConstants ; import org . eclipse . jdt . internal . core . util . KeyKind ; import org . eclipse . jdt . internal . core . util . KeyToSignature ; public final class BindingKey { private String key ; public BindingK...
<s> package org . eclipse . jdt . core ; import org . eclipse . core . resources . IMarker ; public interface IJavaModelMarker { String JAVA_MODEL_PROBLEM_MARKER = JavaCore . PLUGIN_ID + "<STR_LIT>" ; String TRANSIENT_PROBLEM = JavaCore . PLUGIN_ID + "<STR_LIT>" ; String TASK_MARKER = JavaCore . PLUGIN_ID + "<STR_LIT>"...
<s> package org . eclipse . jdt . core ; public interface IImportContainer extends IJavaElement , IParent , ISourceReference { IImportDeclaration getImport ( String name ) ; } </s>
<s> package org . eclipse . jdt . core . eval ; public interface IGlobalVariable { public String getInitializer ( ) ; public String getName ( ) ; public String getTypeName ( ) ; } </s>
<s> package org . eclipse . jdt . core . eval ; import org . eclipse . core . resources . IMarker ; import org . eclipse . jdt . internal . eval . EvaluationConstants ; public interface ICodeSnippetRequestor { public static final String LOCAL_VAR_PREFIX = new String ( EvaluationConstants . LOCAL_VAR_PREFIX ) ; public s...
<s> package org . eclipse . jdt . core . eval ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . jdt . core . * ; import org . eclipse . jdt . core . IJavaElement ; import org . eclipse . jdt . core . IJavaProject ; import org . eclipse . jdt . core . IType ; import org . eclipse . jdt ...
<s> package org . eclipse . jdt . core ; public interface ITypeParameter extends IJavaElement , ISourceReference { String [ ] getBounds ( ) throws JavaModelException ; String [ ] getBoundsSignatures ( ) throws JavaModelException ; IMember getDeclaringMember ( ) ; ITypeRoot getTypeRoot ( ) ; } </s>
<s> package org . eclipse . jdt . core ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . HashSet ; import java . util . Hashtable ; import java . util . Map ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IConfigurationElement ; impo...
<s> package org . eclipse . jdt . core ; import org . eclipse . core . resources . IMarker ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . IProgressMonitor ; public interface IWorkingCopy { void commit ( boolean force , IProgressMonitor monitor ) throws JavaModelException...
<s> package org . eclipse . jdt . core ; public interface IInitializer extends IMember { } </s>
<s> package org . eclipse . jdt . core ; import java . io . PrintStream ; import java . io . PrintWriter ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . jdt . internal . core . JavaModelStatus ; public class JavaModelException extends Co...
<s> package org . eclipse . jdt . core ; public interface IParent { IJavaElement [ ] getChildren ( ) throws JavaModelException ; boolean hasChildren ( ) throws JavaModelException ; } </s>
<s> package org . eclipse . jdt . core ; public final class CompletionFlags { public static final int Default = <NUM_LIT> ; public static final int StaticImport = <NUM_LIT> ; private CompletionFlags ( ) { } public static boolean isStaticImport ( int flags ) { return ( flags & StaticImport ) != <NUM_LIT:0> ; } } </s>
<s> package org . eclipse . jdt . core ; import org . eclipse . core . runtime . IProgressMonitor ; public interface IPackageFragment extends IParent , IJavaElement , IOpenable , ISourceManipulation { public static final String DEFAULT_PACKAGE_NAME = "<STR_LIT>" ; boolean containsJavaResources ( ) throws JavaModelExcep...
<s> package org . eclipse . jdt . core ; import org . eclipse . jdt . core . compiler . IProblem ; public interface IProblemRequestor { void acceptProblem ( IProblem problem ) ; void beginReporting ( ) ; void endReporting ( ) ; boolean isActive ( ) ; } </s>
<s> package org . eclipse . jdt . core ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . IAdaptable ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . jobs . ISchedulingRule ; ...
<s> package org . eclipse . jdt . core . compiler ; import org . eclipse . core . resources . IFile ; public class BuildContext { public char [ ] getContents ( ) { return null ; } public IFile getFile ( ) { return null ; } public boolean hasAnnotations ( ) { return false ; } public void recordAddedGeneratedFiles ( IFil...
<s> package org . eclipse . jdt . core . compiler ; public interface ITerminalSymbols { int TokenNameWHITESPACE = <NUM_LIT:1000> ; int TokenNameCOMMENT_LINE = <NUM_LIT> ; int TokenNameCOMMENT_BLOCK = <NUM_LIT> ; int TokenNameCOMMENT_JAVADOC = <NUM_LIT> ; int TokenNameIdentifier = <NUM_LIT:5> ; int TokenNameabstract = <...
<s> package org . eclipse . jdt . core . compiler ; import org . eclipse . jdt . core . IJavaProject ; public abstract class CompilationParticipant { public final static int READY_FOR_BUILD = <NUM_LIT:1> ; public final static int NEEDS_FULL_BUILD = <NUM_LIT:2> ; public int aboutToBuild ( IJavaProject project ) { return...
<s> package org . eclipse . jdt . core . compiler ; import org . eclipse . jdt . core . compiler . InvalidInputException ; public interface IScanner { char [ ] getCurrentTokenSource ( ) ; char [ ] getRawTokenSource ( ) ; int getCurrentTokenStartPosition ( ) ; int getCurrentTokenEndPosition ( ) ; int getLineStart ( int ...
<s> package org . eclipse . jdt . core . compiler ; import java . util . HashMap ; import org . eclipse . jdt . core . ICompilationUnit ; import org . eclipse . jdt . core . IJavaElementDelta ; import org . eclipse . jdt . core . IJavaModelMarker ; import org . eclipse . jdt . core . JavaModelException ; import org . e...
<s> package org . eclipse . jdt . core . jdom ; public interface IDOMType extends IDOMMember { public void addSuperInterface ( String interfaceName ) throws IllegalArgumentException ; String [ ] getTypeParameters ( ) ; public String getName ( ) ; public String getSuperclass ( ) ; public String [ ] getSuperInterfaces ( ...
<s> package org . eclipse . jdt . core . jdom ; public interface IDOMCompilationUnit extends IDOMNode { public String getHeader ( ) ; public String getName ( ) ; public void setHeader ( String comment ) ; public void setName ( String name ) ; } </s>
<s> package org . eclipse . jdt . core . jdom ; public interface IDOMInitializer extends IDOMMember { public String getBody ( ) ; public String getName ( ) ; public void setBody ( String body ) ; public void setName ( String name ) ; } </s>
<s> package org . eclipse . jdt . core . jdom ; public interface IDOMImport extends IDOMNode { public String getName ( ) ; public boolean isOnDemand ( ) ; int getFlags ( ) ; void setFlags ( int flags ) ; public void setName ( String name ) ; } </s>
<s> package org . eclipse . jdt . core . jdom ; public interface IDOMMember extends IDOMNode { public String getComment ( ) ; public int getFlags ( ) ; public void setComment ( String comment ) ; public void setFlags ( int flags ) ; } </s>
<s> package org . eclipse . jdt . core . jdom ; public class DOMException extends RuntimeException { private static final long serialVersionUID = <NUM_LIT> ; public DOMException ( ) { } public DOMException ( String message ) { super ( message ) ; } } </s>
<s> package org . eclipse . jdt . core . jdom ; public interface IDOMMethod extends IDOMMember { public void addException ( String exceptionType ) throws IllegalArgumentException ; public void addParameter ( String type , String name ) throws IllegalArgumentException ; public String getBody ( ) ; public void setDefault...
<s> package org . eclipse . jdt . core . jdom ; import org . eclipse . jdt . internal . core . jdom . * ; public class DOMFactory implements IDOMFactory { String lineSeparator ; public DOMFactory ( ) { this . lineSeparator = org . eclipse . jdt . internal . core . util . Util . getLineSeparator ( null , null ) ; } publ...
<s> package org . eclipse . jdt . core . jdom ; import java . util . Enumeration ; import org . eclipse . jdt . core . IJavaElement ; public interface IDOMNode extends Cloneable { public static int COMPILATION_UNIT = <NUM_LIT:1> ; public static int PACKAGE = <NUM_LIT:2> ; public static int IMPORT = <NUM_LIT:3> ; public...
<s> package org . eclipse . jdt . core . jdom ; public interface IDOMField extends IDOMMember { public String getInitializer ( ) ; public String getName ( ) ; public String getType ( ) ; public void setInitializer ( String initializer ) ; public void setName ( String name ) throws IllegalArgumentException ; public void...
<s> package org . eclipse . jdt . core . jdom ; public interface IDOMFactory { public IDOMCompilationUnit createCompilationUnit ( ) ; public IDOMCompilationUnit createCompilationUnit ( char [ ] sourceCode , String name ) ; public IDOMCompilationUnit createCompilationUnit ( String sourceCode , String name ) ; public IDO...
<s> package org . eclipse . jdt . core . jdom ; public interface IDOMPackage extends IDOMNode { public String getName ( ) ; public void setName ( String name ) ; } </s>
<s> package org . eclipse . jdt . core ; import org . eclipse . jdt . internal . compiler . classfmt . ClassFileConstants ; public final class Flags { public static final int AccDefault = ClassFileConstants . AccDefault ; public static final int AccPublic = ClassFileConstants . AccPublic ; public static final int AccPr...
<s> package org . eclipse . jdt . core ; public interface ISourceReference { boolean exists ( ) ; String getSource ( ) throws JavaModelException ; ISourceRange getSourceRange ( ) throws JavaModelException ; ISourceRange getNameRange ( ) throws JavaModelException ; } </s>
<s> package org . eclipse . jdt . core ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IProgressMonitor ; public interface IPackageFragmentRoot extends IParent , IJavaElement , IOpenable { int K_SOURCE = <NUM_LIT:1> ; int K_BINARY = <NUM_LIT:2> ; String DEFAULT_PACKAGEROOT_PATH...
<s> package org . eclipse . jdt . core ; public interface IPackageDeclaration extends IJavaElement , ISourceReference , IAnnotatable { String getElementName ( ) ; } </s>
<s> package org . eclipse . jdt . core ; import org . codehaus . jdt . groovy . integration . LanguageSupportFactory ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . core . BufferManager ; import org . ecl...
<s> package org . eclipse . jdt . core . util ; public interface IRuntimeVisibleAnnotationsAttribute extends IClassFileAttribute { int getAnnotationsNumber ( ) ; IAnnotation [ ] getAnnotations ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IConstantPoolConstant { int CONSTANT_Class = <NUM_LIT:7> ; int CONSTANT_Fieldref = <NUM_LIT:9> ; int CONSTANT_Methodref = <NUM_LIT:10> ; int CONSTANT_InterfaceMethodref = <NUM_LIT:11> ; int CONSTANT_String = <NUM_LIT:8> ; int CONSTANT_Integer = <NUM_LIT:3...
<s> package org . eclipse . jdt . core . util ; public interface IInnerClassesAttribute extends IClassFileAttribute { int getNumberOfClasses ( ) ; IInnerClassesAttributeEntry [ ] getInnerClassAttributesEntries ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface ISignatureAttribute extends IClassFileAttribute { int getSignatureIndex ( ) ; char [ ] getSignature ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IStackMapFrame { int getFrameType ( ) ; int getOffsetDelta ( ) ; int getNumberOfLocals ( ) ; IVerificationTypeInfo [ ] getLocals ( ) ; int getNumberOfStackItems ( ) ; IVerificationTypeInfo [ ] getStackItems ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IAnnotationDefaultAttribute extends IClassFileAttribute { IAnnotationComponentValue getMemberValue ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public class ClassFormatException extends Exception { public static final int ERROR_MALFORMED_UTF8 = <NUM_LIT:1> ; public static final int ERROR_TRUNCATED_INPUT = <NUM_LIT:2> ; public static final int INVALID_CONSTANT_POOL_ENTRY = <NUM_LIT:3> ; public static final int TOO...
<s> package org . eclipse . jdt . core . util ; public abstract class ClassFileBytesDisassembler { public final static int DETAILED = <NUM_LIT:1> ; public final static int DEFAULT = <NUM_LIT:2> ; public final static int SYSTEM = <NUM_LIT:4> ; public final static int COMPACT = <NUM_LIT:8> ; public final static int WORKI...
<s> package org . eclipse . jdt . core . util ; public interface IConstantPool { int getConstantPoolCount ( ) ; int getEntryKind ( int index ) ; IConstantPoolEntry decodeEntry ( int index ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IAnnotation { int getTypeIndex ( ) ; char [ ] getTypeName ( ) ; int getComponentsNumber ( ) ; IAnnotationComponent [ ] getComponents ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IFieldInfo { IConstantValueAttribute getConstantValueAttribute ( ) ; int getAccessFlags ( ) ; char [ ] getName ( ) ; int getNameIndex ( ) ; char [ ] getDescriptor ( ) ; int getDescriptorIndex ( ) ; boolean hasConstantValueAttribute ( ) ; boolean isSynthet...
<s> package org . eclipse . jdt . core . util ; public interface IConstantValueAttribute extends IClassFileAttribute { int getConstantValueIndex ( ) ; IConstantPoolEntry getConstantValue ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IAnnotationComponent { int getComponentNameIndex ( ) ; char [ ] getComponentName ( ) ; IAnnotationComponentValue getComponentValue ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IParameterAnnotation { int getAnnotationsNumber ( ) ; IAnnotation [ ] getAnnotations ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IEnclosingMethodAttribute extends IClassFileAttribute { char [ ] getEnclosingClass ( ) ; int getEnclosingClassIndex ( ) ; char [ ] getMethodDescriptor ( ) ; int getMethodDescriptorIndex ( ) ; char [ ] getMethodName ( ) ; int getMethodNameIndex ( ) ; int g...
<s> package org . eclipse . jdt . core . util ; public interface IClassFileReader { int ALL = <NUM_LIT> ; int CONSTANT_POOL = <NUM_LIT> ; int METHOD_INFOS = <NUM_LIT> + CONSTANT_POOL ; int FIELD_INFOS = <NUM_LIT> + CONSTANT_POOL ; int SUPER_INTERFACES = <NUM_LIT> + CONSTANT_POOL ; int CLASSFILE_ATTRIBUTES = <NUM_LIT> +...
<s> package org . eclipse . jdt . core . util ; public interface IExceptionAttribute extends IClassFileAttribute { int getExceptionsNumber ( ) ; char [ ] [ ] getExceptionNames ( ) ; int [ ] getExceptionIndexes ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface ILocalVariableTableEntry { int getStartPC ( ) ; int getLength ( ) ; int getNameIndex ( ) ; int getDescriptorIndex ( ) ; int getIndex ( ) ; char [ ] getName ( ) ; char [ ] getDescriptor ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface ILocalVariableTypeTableEntry { int getStartPC ( ) ; int getLength ( ) ; int getNameIndex ( ) ; int getSignatureIndex ( ) ; int getIndex ( ) ; char [ ] getName ( ) ; char [ ] getSignature ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IRuntimeVisibleParameterAnnotationsAttribute extends IClassFileAttribute { int getParametersNumber ( ) ; IParameterAnnotation [ ] getParameterAnnotations ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; import java . util . Comparator ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . jdt . core . ICompilationUnit ; import org . eclipse . jdt . core . IJavaElement ; import org . eclipse . jdt . core . JavaModelException ; import org . ecl...
<s> package org . eclipse . jdt . core . util ; public interface ICodeAttribute extends IClassFileAttribute { int getMaxLocals ( ) ; int getMaxStack ( ) ; ILineNumberAttribute getLineNumberAttribute ( ) ; ILocalVariableAttribute getLocalVariableAttribute ( ) ; IExceptionTableEntry [ ] getExceptionTable ( ) ; byte [ ] g...
<s> package org . eclipse . jdt . core . util ; public interface ILocalVariableAttribute extends IClassFileAttribute { int getLocalVariableTableLength ( ) ; ILocalVariableTableEntry [ ] getLocalVariableTable ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IOpcodeMnemonics { int NOP = <NUM_LIT:0x00> ; int ACONST_NULL = <NUM_LIT> ; int ICONST_M1 = <NUM_LIT> ; int ICONST_0 = <NUM_LIT> ; int ICONST_1 = <NUM_LIT> ; int ICONST_2 = <NUM_LIT> ; int ICONST_3 = <NUM_LIT> ; int ICONST_4 = <NUM_LIT> ; int ICONST_5 = <...
<s> package org . eclipse . jdt . core . util ; public interface IBytecodeVisitor { void _aaload ( int pc ) ; void _aastore ( int pc ) ; void _aconst_null ( int pc ) ; void _aload ( int pc , int index ) ; void _aload_0 ( int pc ) ; void _aload_1 ( int pc ) ; void _aload_2 ( int pc ) ; void _aload_3 ( int pc ) ; void _a...
<s> package org . eclipse . jdt . core . util ; public interface ILocalVariableTypeTableAttribute extends IClassFileAttribute { int getLocalVariableTypeTableLength ( ) ; ILocalVariableTypeTableEntry [ ] getLocalVariableTypeTable ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public class OpcodeStringValues implements IOpcodeMnemonics { public static final String [ ] BYTECODE_NAMES = new String [ <NUM_LIT> ] ; static { BYTECODE_NAMES [ NOP ] = "<STR_LIT>" ; BYTECODE_NAMES [ ACONST_NULL ] = "<STR_LIT>" ; BYTECODE_NAMES [ ICONST_M1 ] = "<STR_LIT...
<s> package org . eclipse . jdt . core . util ; public interface IStackMapTableAttribute extends IClassFileAttribute { int getNumberOfEntries ( ) ; IStackMapFrame [ ] getStackMapFrame ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface ILineNumberAttribute extends IClassFileAttribute { int getLineNumberTableLength ( ) ; int [ ] [ ] getLineNumberTable ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface ISourceAttribute extends IClassFileAttribute { int getSourceFileIndex ( ) ; char [ ] getSourceFileName ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IStackMapAttribute extends IClassFileAttribute { int getNumberOfEntries ( ) ; IStackMapFrame [ ] getStackMapFrame ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IAttributeNamesConstants { char [ ] SYNTHETIC = "<STR_LIT>" . toCharArray ( ) ; char [ ] CONSTANT_VALUE = "<STR_LIT>" . toCharArray ( ) ; char [ ] LINE_NUMBER = "<STR_LIT>" . toCharArray ( ) ; char [ ] LOCAL_VARIABLE = "<STR_LIT>" . toCharArray ( ) ; char...
<s> package org . eclipse . jdt . core . util ; public interface IRuntimeInvisibleParameterAnnotationsAttribute extends IClassFileAttribute { int getParametersNumber ( ) ; IParameterAnnotation [ ] getParameterAnnotations ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IConstantPoolEntry { int getKind ( ) ; int getClassInfoNameIndex ( ) ; int getClassIndex ( ) ; int getNameAndTypeIndex ( ) ; int getStringIndex ( ) ; String getStringValue ( ) ; int getIntegerValue ( ) ; float getFloatValue ( ) ; double getDoubleValue ( )...
<s> package org . eclipse . jdt . core . util ; public interface IInnerClassesAttributeEntry { int getAccessFlags ( ) ; int getInnerNameIndex ( ) ; int getOuterClassNameIndex ( ) ; int getInnerClassNameIndex ( ) ; char [ ] getInnerName ( ) ; char [ ] getOuterClassName ( ) ; char [ ] getInnerClassName ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IMethodInfo { char [ ] getDescriptor ( ) ; int getDescriptorIndex ( ) ; int getAccessFlags ( ) ; char [ ] getName ( ) ; int getNameIndex ( ) ; boolean isClinit ( ) ; boolean isConstructor ( ) ; boolean isSynthetic ( ) ; boolean isDeprecated ( ) ; ICodeAtt...
<s> package org . eclipse . jdt . core . util ; import java . io . File ; import java . io . IOException ; import java . util . Enumeration ; import java . util . HashMap ; import java . util . Iterator ; import java . util . LinkedHashSet ; import java . util . Map ; import java . util . PropertyResourceBundle ; impor...