text
stringlengths
30
1.67M
<s> package org . eclipse . jdt . core ; import org . eclipse . core . resources . IStorage ; import org . eclipse . core . runtime . IPath ; public interface IJarEntryResource extends IStorage { IJarEntryResource [ ] getChildren ( ) ; IPath getFullPath ( ) ; Object getParent ( ) ; IPackageFragmentRoot getPackageFragme...
<s> package org . eclipse . jdt . core ; import org . eclipse . core . resources . IResourceDelta ; import org . eclipse . jdt . core . dom . CompilationUnit ; public interface IJavaElementDelta { public int ADDED = <NUM_LIT:1> ; public int REMOVED = <NUM_LIT:2> ; public int CHANGED = <NUM_LIT:4> ; public int F_CONTENT...
<s> package org . eclipse . jdt . core ; import org . eclipse . core . runtime . IProgressMonitor ; public interface IOpenable { public void close ( ) throws JavaModelException ; public String findRecommendedLineSeparator ( ) throws JavaModelException ; public IBuffer getBuffer ( ) throws JavaModelException ; boolean h...
<s> package org . eclipse . jdt . core ; public interface IAnnotation extends IJavaElement , ISourceReference { String getElementName ( ) ; IMemberValuePair [ ] getMemberValuePairs ( ) throws JavaModelException ; int getOccurrenceCount ( ) ; } </s>
<s> package org . eclipse . jdt . core ; public interface IImportDeclaration extends IJavaElement , ISourceReference , ISourceManipulation { String getElementName ( ) ; int getFlags ( ) throws JavaModelException ; boolean isOnDemand ( ) ; } </s>
<s> package org . eclipse . jdt . core ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . IWorkspace ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IProgressMonitor ; public interface IJavaModel extends IJavaElement , IOpenable , ...
<s> package org . eclipse . jdt . core ; public interface IClasspathAttribute { String JAVADOC_LOCATION_ATTRIBUTE_NAME = "<STR_LIT>" ; String INDEX_LOCATION_ATTRIBUTE_NAME = "<STR_LIT>" ; String SOURCE_ATTACHMENT_ENCODING = "<STR_LIT>" ; String IGNORE_OPTIONAL_PROBLEMS = "<STR_LIT>" ; String OPTIONAL = "<STR_LIT>" ; St...
<s> package org . eclipse . jdt . core ; import org . eclipse . jdt . core . compiler . IProblem ; public abstract class CompletionRequestor { private int ignoreSet = <NUM_LIT:0> ; private String [ ] favoriteReferences ; private int requiredProposalAllowSet [ ] = null ; private boolean requireExtendedContext = false ; ...
<s> package org . eclipse . jdt . core ; public interface ICorrectionRequestor { void acceptClass ( char [ ] packageName , char [ ] className , char [ ] correctionName , int modifiers , int correctionStart , int correctionEnd ) ; void acceptField ( char [ ] declaringTypePackageName , char [ ] declaringTypeName , char [...
<s> package org . eclipse . jdt . core ; import org . eclipse . core . resources . IMarker ; public interface ICodeCompletionRequestor { void acceptClass ( char [ ] packageName , char [ ] className , char [ ] completionName , int modifiers , int completionStart , int completionEnd ) ; void acceptError ( IMarker marker ...
<s> package org . eclipse . jdt . core ; import java . io . InputStream ; import org . eclipse . core . runtime . IProgressMonitor ; public interface IType extends IMember , IAnnotatable { void codeComplete ( char [ ] snippet , int insertion , int position , char [ ] [ ] localVariableTypeNames , char [ ] [ ] localVaria...
<s> package org . eclipse . jdt . core ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . text . edits . TextEdit ; import org . eclipse . text . edits . UndoEdit ; public interface IBuffer { public interface ITextEditCapability { pu...
<s> package org . eclipse . jdt . core ; public interface IMethod extends IMember , IAnnotatable { IMemberValuePair getDefaultValue ( ) throws JavaModelException ; String getElementName ( ) ; String [ ] getExceptionTypes ( ) throws JavaModelException ; String [ ] getTypeParameterSignatures ( ) throws JavaModelException...
<s> package org . eclipse . jdt . core ; import java . io . File ; import java . io . IOException ; import java . io . InputStream ; import java . util . HashMap ; import java . util . Map ; import java . util . zip . ZipEntry ; import java . util . zip . ZipFile ; import org . eclipse . core . resources . IFile ; impo...
<s> package org . eclipse . jdt . core ; import org . eclipse . jdt . core . compiler . IProblem ; public class CompletionRequestorAdapter implements ICompletionRequestor { public void acceptAnonymousType ( char [ ] superTypePackageName , char [ ] superTypeName , char [ ] [ ] parameterPackageNames , char [ ] [ ] parame...
<s> package org . eclipse . jdt . core ; import java . util . StringTokenizer ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . IWorkspace ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . IPath ; import org . eclipse . ...
<s> package org . eclipse . jdt . core ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . jdt . internal . codeassist . InternalCompletionProposal ; public class CompletionProposal { public static final int ANONYMOUS_CLASS_DECLARATION = <NUM_LIT:1> ; public static final int FIELD_REF = ...
<s> package org . eclipse . jdt . core ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . compiler . parser . ScannerHelper ; import org . eclipse . jdt . internal . core . INamingRequestor ; import org . eclipse . jdt . internal . core . InternalNamingConventions ;...
<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 IBootstrapMethodsEntry { int getBootstrapMethodReference ( ) ; int [ ] getBootstrapArguments ( ) ; } </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 IBootstrapMethodsAttribute extends IClassFileAttribute { int getBootstrapMethodsLength ( ) ; IBootstrapMethodsEntry [ ] getBootstrapMethods ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IConstantPoolEntry2 extends IConstantPoolEntry { int getDescriptorIndex ( ) ; int getReferenceKind ( ) ; int getReferenceIndex ( ) ; int getBootstrapMethodAttributeIndex ( ) ; } </s>
<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...
<s> package org . eclipse . jdt . core . util ; public interface IClassFileDisassembler { int DETAILED = <NUM_LIT:1> ; int DEFAULT = <NUM_LIT:2> ; String disassemble ( IClassFileReader classFileReader , String lineSeparator ) ; String disassemble ( IClassFileReader classFileReader , String lineSeparator , int mode ) ; ...
<s> package org . eclipse . jdt . core . util ; public interface IVerificationTypeInfo { public static final int ITEM_TOP = <NUM_LIT:0> ; public static final int ITEM_INTEGER = <NUM_LIT:1> ; public static final int ITEM_FLOAT = <NUM_LIT:2> ; public static final int ITEM_DOUBLE = <NUM_LIT:3> ; public static final int IT...
<s> package org . eclipse . jdt . core . util ; public interface IRuntimeInvisibleAnnotationsAttribute extends IClassFileAttribute { int getAnnotationsNumber ( ) ; IAnnotation [ ] getAnnotations ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IModifierConstants { int ACC_PUBLIC = <NUM_LIT> ; int ACC_PRIVATE = <NUM_LIT> ; int ACC_PROTECTED = <NUM_LIT> ; int ACC_STATIC = <NUM_LIT> ; int ACC_FINAL = <NUM_LIT> ; int ACC_SUPER = <NUM_LIT> ; int ACC_SYNCHRONIZED = <NUM_LIT> ; int ACC_VOLATILE = <NUM...
<s> package org . eclipse . jdt . core . util ; public class ByteCodeVisitorAdapter implements IBytecodeVisitor { public void _aaload ( int pc ) { } public void _aastore ( int pc ) { } public void _aconst_null ( int pc ) { } public void _aload_0 ( int pc ) { } public void _aload_1 ( int pc ) { } public void _aload_2 ( ...
<s> package org . eclipse . jdt . core . util ; public interface IClassFileAttribute { int getAttributeNameIndex ( ) ; char [ ] getAttributeName ( ) ; long getAttributeLength ( ) ; } </s>
<s> package org . eclipse . jdt . core . util ; public interface IAnnotationComponentValue { int BYTE_TAG = '<CHAR_LIT>' ; int CHAR_TAG = '<CHAR_LIT>' ; int DOUBLE_TAG = '<CHAR_LIT>' ; int FLOAT_TAG = '<CHAR_LIT>' ; int INTEGER_TAG = '<CHAR_LIT>' ; int LONG_TAG = '<CHAR_LIT>' ; int SHORT_TAG = '<CHAR_LIT>' ; int BOOLEA...
<s> package org . eclipse . jdt . core . util ; public interface IExceptionTableEntry { int getStartPC ( ) ; int getEndPC ( ) ; int getHandlerPC ( ) ; int getCatchTypeIndex ( ) ; char [ ] getCatchType ( ) ; } </s>
<s> package org . eclipse . jdt . core ; import java . util . Hashtable ; import java . util . Map ; import org . eclipse . core . resources . * ; import org . eclipse . jdt . core . compiler . * ; import org . eclipse . jdt . internal . compiler . impl . CompilerOptions ; import org . eclipse . jdt . internal . compil...
<s> package org . eclipse . jdt . core ; public interface ICodeFormatter { String format ( String string , int indentationLevel , int [ ] positions , String lineSeparator ) ; } </s>
<s> package org . eclipse . jdt . core ; import java . util . Map ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . IPath ; import org . eclipse . jdt . core . do...
<s> package org . eclipse . jdt . core ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IStatus ; public interface IJavaModelStatus extends IStatus { IJavaElement [ ] getElements ( ) ; IPath getPath ( ) ; String getString ( ) ; boolean isDoesNotExist ( ) ; } </s>
<s> package org . eclipse . jdt . core ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . jdt . core . dom . ASTParser ; import org . eclipse . jdt . core . dom . CompilationUnit ; import org . eclipse . jdt . core . dom . AST ; import org . eclipse . jdt . core . dom . IBinding ; impor...
<s> package org . eclipse . jdt . core ; public interface IRegion { void add ( IJavaElement element ) ; boolean contains ( IJavaElement element ) ; IJavaElement [ ] getElements ( ) ; boolean remove ( IJavaElement element ) ; } </s>
<s> package org . eclipse . jdt . core ; import org . eclipse . core . runtime . IPath ; public interface IAccessRule { int K_ACCESSIBLE = <NUM_LIT:0> ; int K_NON_ACCESSIBLE = <NUM_LIT:1> ; int K_DISCOURAGED = <NUM_LIT:2> ; int IGNORE_IF_BETTER = <NUM_LIT> ; IPath getPattern ( ) ; int getKind ( ) ; boolean ignoreIfBett...
<s> package org . eclipse . jdt . core ; public interface IAnnotatable { IAnnotation getAnnotation ( String name ) ; IAnnotation [ ] getAnnotations ( ) throws JavaModelException ; } </s>
<s> package org . eclipse . jdt . core ; public interface IMember extends IJavaElement , ISourceReference , ISourceManipulation , IParent { String [ ] getCategories ( ) throws JavaModelException ; IClassFile getClassFile ( ) ; ICompilationUnit getCompilationUnit ( ) ; IType getDeclaringType ( ) ; int getFlags ( ) throw...
<s> package org . eclipse . jdt . core ; import java . io . OutputStream ; import org . eclipse . core . runtime . IProgressMonitor ; public interface ITypeHierarchy { void addTypeHierarchyChangedListener ( ITypeHierarchyChangedListener listener ) ; boolean contains ( IType type ) ; boolean exists ( ) ; IType [ ] getAl...
<s> package org . eclipse . jdt . core ; import org . eclipse . core . runtime . IPath ; public interface IClasspathContainer { int K_APPLICATION = <NUM_LIT:1> ; int K_SYSTEM = <NUM_LIT:2> ; int K_DEFAULT_SYSTEM = <NUM_LIT:3> ; IClasspathEntry [ ] getClasspathEntries ( ) ; String getDescription ( ) ; int getKind ( ) ; ...
<s> package org . eclipse . jdt . core ; public interface ILocalVariable extends IJavaElement , ISourceReference , IAnnotatable { String getElementName ( ) ; ISourceRange getNameRange ( ) ; String getTypeSignature ( ) ; boolean isParameter ( ) ; int getFlags ( ) ; IMember getDeclaringMember ( ) ; ITypeRoot getTypeRoot ...
<s> package org . eclipse . jdt . core ; public interface IJavaModelStatusConstants { public static final int INVALID_CP_CONTAINER_ENTRY = <NUM_LIT> ; public static final int CP_CONTAINER_PATH_UNBOUND = <NUM_LIT> ; public static final int INVALID_CLASSPATH = <NUM_LIT> ; public static final int CP_VARIABLE_PATH_UNBOUND ...
<s> package org . eclipse . jdt . core ; public interface IMemberValuePair { int K_INT = <NUM_LIT:1> ; int K_BYTE = <NUM_LIT:2> ; int K_SHORT = <NUM_LIT:3> ; int K_CHAR = <NUM_LIT:4> ; int K_FLOAT = <NUM_LIT:5> ; int K_DOUBLE = <NUM_LIT:6> ; int K_LONG = <NUM_LIT:7> ; int K_BOOLEAN = <NUM_LIT:8> ; int K_STRING = <NUM_L...
<s> package org . eclipse . jdt . core ; import org . eclipse . core . runtime . IProgressMonitor ; public interface IClassFile extends ITypeRoot { ICompilationUnit becomeWorkingCopy ( IProblemRequestor problemRequestor , WorkingCopyOwner owner , IProgressMonitor monitor ) throws JavaModelException ; byte [ ] getBytes ...
<s> package org . eclipse . jdt . core ; import java . util . EventObject ; public class ElementChangedEvent extends EventObject { public static final int POST_CHANGE = <NUM_LIT:1> ; public static final int PRE_AUTO_BUILD = <NUM_LIT:2> ; public static final int POST_RECONCILE = <NUM_LIT:4> ; private static final long s...
<s> package org . eclipse . jdt . core ; public interface IBufferChangedListener { public void bufferChanged ( BufferChangedEvent event ) ; } </s>
<s> package org . eclipse . jdt . core ; public interface IElementChangedListener { public void elementChanged ( ElementChangedEvent event ) ; } </s>
<s> package org . eclipse . jdt . core ; import org . eclipse . core . runtime . IProgressMonitor ; public interface ISourceManipulation { void copy ( IJavaElement container , IJavaElement sibling , String rename , boolean replace , IProgressMonitor monitor ) throws JavaModelException ; void delete ( boolean force , IP...
<s> package org . eclipse . jdt . core ; import org . eclipse . jdt . core . compiler . IProblem ; public interface ICompletionRequestor { void acceptAnonymousType ( char [ ] superTypePackageName , char [ ] superTypeName , char [ ] [ ] parameterPackageNames , char [ ] [ ] parameterTypeNames , char [ ] [ ] parameterName...
<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 ; public interface IImportContainer extends IJavaElement , IParent , ISourceReference { IImportDeclaration getImport ( String name ) ; } </s>
<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 IDOMPackage extends IDOMNode { public String getName ( ) ; public void setName ( String name ) ; } </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 ; 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 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 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 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 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 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 ; 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 ; 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...