text
stringlengths
30
1.67M
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class WhileStatement extends Statement { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( WhileStatement . class , "<STR_LIT>" , Expression . class , MANDATOR...
<s> package org . eclipse . jdt . core . dom ; public abstract class Annotation extends Expression implements IExtendedModifier { abstract ChildPropertyDescriptor internalTypeNameProperty ( ) ; public final ChildPropertyDescriptor getTypeNameProperty ( ) { return internalTypeNameProperty ( ) ; } static final ChildPrope...
<s> package org . eclipse . jdt . core . dom ; public interface IVariableBinding extends IBinding { public boolean isField ( ) ; public boolean isEnumConstant ( ) ; public boolean isParameter ( ) ; public String getName ( ) ; public ITypeBinding getDeclaringClass ( ) ; public ITypeBinding getType ( ) ; public int getVa...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . jdt . core . compiler . InvalidInputException ; import org . eclipse . jdt . internal . compiler . classfmt . ClassFileConstants ; import org . eclipse . jdt . internal . compiler . parser ...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . Iterator ; import java . util . List ; import java . util . Map ; public final class Modifier extends ASTNode implements IExtendedModifier { public static class ModifierKeyword { public st...
<s> package org . eclipse . jdt . core . dom ; import java . util . Iterator ; import java . util . List ; public abstract class BodyDeclaration extends ASTNode { Javadoc optionalDocComment = null ; private int modifierFlags = Modifier . NONE ; ASTNode . NodeList modifiers = null ; abstract SimplePropertyDescriptor int...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class PackageDeclaration extends ASTNode { public static final ChildPropertyDescriptor JAVADOC_PROPERTY = new ChildPropertyDescriptor ( PackageDeclaration . class , "<STR_LIT>" , Javadoc . class , OPTIONAL...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class TryStatement extends Statement { public static final ChildListPropertyDescriptor RESOURCES_PROPERTY = new ChildListPropertyDescriptor ( TryStatement . class , "<STR_LIT>" , VariableDeclarationExpress...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . jdt . core . compiler . InvalidInputException ; import org . eclipse . jdt . internal . compiler . parser . Scanner ; import org . eclipse . jdt . internal . compiler . parser . TerminalTok...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public final class TagElement extends ASTNode implements IDocElement { public static final SimplePropertyDescriptor TAG_NAME_PROPERTY = new SimplePropertyDescriptor ( TagElement . class , "<STR_LIT>" , String . c...
<s> package org . eclipse . jdt . core . dom ; public abstract class FileASTRequestor { CompilationUnitResolver compilationUnitResolver = null ; public void acceptAST ( String sourceFilePath , CompilationUnit ast ) { } public void acceptBinding ( String bindingKey , IBinding binding ) { } public final IBinding [ ] crea...
<s> package org . eclipse . jdt . core . dom ; public class Message { private String message ; private int startPosition ; private int length ; public Message ( String message , int startPosition ) { if ( message == null ) { throw new IllegalArgumentException ( ) ; } if ( startPosition < - <NUM_LIT:1> ) { throw new Ill...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class QualifiedName extends Name { public static final ChildPropertyDescriptor QUALIFIER_PROPERTY = new ChildPropertyDescriptor ( QualifiedName . class , "<STR_LIT>" , Name . class , MANDATORY , CYCLE_RISK...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ThisExpression extends Expression { public static final ChildPropertyDescriptor QUALIFIER_PROPERTY = new ChildPropertyDescriptor ( ThisExpression . class , "<STR_LIT>" , Name . class , OPTIONAL , NO_...
<s> package org . eclipse . jdt . core . dom ; import java . io . PrintWriter ; import java . io . StringWriter ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . jdt ....
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class SuperFieldAccess extends Expression { public static final ChildPropertyDescriptor QUALIFIER_PROPERTY = new ChildPropertyDescriptor ( SuperFieldAccess . class , "<STR_LIT>" , Name . class , OPTIONAL ,...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ArrayAccess extends Expression { public static final ChildPropertyDescriptor ARRAY_PROPERTY = new ChildPropertyDescriptor ( ArrayAccess . class , "<STR_LIT>" , Expression . class , MANDATORY , CYCLE_...
<s> package org . eclipse . jdt . core . dom ; public final class ChildPropertyDescriptor extends StructuralPropertyDescriptor { private final Class childClass ; private final boolean mandatory ; final boolean cycleRisk ; ChildPropertyDescriptor ( Class nodeClass , String propertyId , Class childType , boolean mandator...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ParenthesizedExpression extends Expression { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( ParenthesizedExpression . class , "<STR_LIT>" , Expression...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ArrayType extends Type { public static final ChildPropertyDescriptor COMPONENT_TYPE_PROPERTY = new ChildPropertyDescriptor ( ArrayType . class , "<STR_LIT>" , Type . class , MANDATORY , CYCLE_RISK ) ...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public final class SingleMemberAnnotation extends Annotation { public static final ChildPropertyDescriptor TYPE_NAME_PROPERTY = internalTypeNamePropertyFactory ( SingleMemberAnnotation . class ) ; public static f...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ArrayInitializer extends Expression { public static final ChildListPropertyDescriptor EXPRESSIONS_PROPERTY = new ChildListPropertyDescriptor ( ArrayInitializer . class , "<STR_LIT>" , Expression . cl...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class TypeLiteral extends Expression { public static final ChildPropertyDescriptor TYPE_PROPERTY = new ChildPropertyDescriptor ( TypeLiteral . class , "<STR_LIT:type>" , Type . class , MANDATORY , CYCLE_RI...
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . compiler . CategorizedProblem ; import org . eclipse . jdt . core . compiler . IProblem ; class ASTSyntaxErrorPropagator extends ASTVisitor { private CategorizedProblem [ ] problems ; ASTSyntaxErrorPropagator ( CategorizedProblem [ ] pro...
<s> package org . eclipse . jdt . core . dom ; public abstract class Name extends Expression implements IDocElement { static final int BASE_NAME_NODE_SIZE = BASE_NODE_SIZE + <NUM_LIT:1> * <NUM_LIT:4> ; int index ; Name ( AST ast ) { super ( ast ) ; } public final boolean isSimpleName ( ) { return ( this instanceof Simp...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class MethodRef extends ASTNode implements IDocElement { public static final ChildPropertyDescriptor QUALIFIER_PROPERTY = new ChildPropertyDescriptor ( MethodRef . class , "<STR_LIT>" , Name . class , OPTI...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class EnumConstantDeclaration extends BodyDeclaration { public static final ChildPropertyDescriptor JAVADOC_PROPERTY = internalJavadocPropertyFactory ( EnumConstantDeclaration . class ) ; public static fin...
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . core . compiler . InvalidInputException ; import org . eclipse . jdt . internal . compiler . parser . Scanner ; import org . eclipse . jdt . internal . compiler . parser . TerminalT...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class WildcardType extends Type { public static final ChildPropertyDescriptor BOUND_PROPERTY = new ChildPropertyDescriptor ( WildcardType . class , "<STR_LIT>" , Type . class , OPTIONAL , CYCLE_RISK ) ; pu...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . List ; public class VariableDeclarationStatement extends Statement { public static final SimplePropertyDescriptor MODIFIERS_PROPERTY = new SimplePropertyDescriptor ( VariableDeclarationSt...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class CastExpression extends Expression { public static final ChildPropertyDescriptor TYPE_PROPERTY = new ChildPropertyDescriptor ( CastExpression . class , "<STR_LIT:type>" , Type . class , MANDATORY , NO...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; public class PostfixExpression extends Expression { public static class Operator { private String token ; private Operator ( String token ) { this . token...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public final class LineComment extends Comment { private static final List PROPERTY_DESCRIPTORS ; static { List propertyList = new ArrayList ( <NUM_LIT:1> ) ; createPropertyList ( LineComment . class , propertyLi...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class UnionType extends Type { public static final ChildListPropertyDescriptor TYPES_PROPERTY = new ChildListPropertyDescriptor ( UnionType . class , "<STR_LIT>" , Type . class , CYCLE_RISK ) ; private sta...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; public class InfixExpression extends Expression { public static class Operator { private String token ; private Operator ( String token ) { this . token =...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class EmptyStatement extends Statement { private static final List PROPERTY_DESCRIPTORS ; static { List properyList = new ArrayList ( <NUM_LIT:1> ) ; createPropertyList ( EmptyStatement . class , properyLi...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public final class BlockComment extends Comment { private static final List PROPERTY_DESCRIPTORS ; static { List properyList = new ArrayList ( <NUM_LIT:1> ) ; createPropertyList ( BlockComment . class , properyLi...
<s> package org . eclipse . jdt . core . dom ; import java . util . HashMap ; import java . util . Map ; import org . eclipse . jdt . core . WorkingCopyOwner ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . compiler . ast . AbstractMethodDeclaration ; import org ....
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . List ; public class VariableDeclarationExpression extends Expression { public static final SimplePropertyDescriptor MODIFIERS_PROPERTY = new SimplePropertyDescriptor ( VariableDeclaration...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class AnnotationTypeDeclaration extends AbstractTypeDeclaration { public static final ChildPropertyDescriptor JAVADOC_PROPERTY = internalJavadocPropertyFactory ( AnnotationTypeDeclaration . class ) ; publi...
<s> package org . eclipse . jdt . core . dom ; import java . util . AbstractList ; import java . util . ArrayList ; import java . util . Collections ; import java . util . HashMap ; import java . util . Iterator ; import java . util . List ; import java . util . Map ; import org . eclipse . jdt . internal . core . dom ...
<s> package org . eclipse . jdt . core . dom ; class DefaultASTVisitor extends ASTVisitor { public DefaultASTVisitor ( ) { super ( ) ; } public DefaultASTVisitor ( boolean visitDocTags ) { super ( visitDocTags ) ; } public void endVisit ( AnnotationTypeDeclaration node ) { endVisitNode ( node ) ; } public void endVisit...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ParameterizedType extends Type { int index ; public static final ChildPropertyDescriptor TYPE_PROPERTY = new ChildPropertyDescriptor ( ParameterizedType . class , "<STR_LIT:type>" , Type . class , MA...
<s> package org . eclipse . jdt . core . dom ; import java . util . List ; import java . util . Vector ; import org . eclipse . jdt . core . compiler . CategorizedProblem ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . core . compiler . IProblem ; import org . eclipse . jdt...
<s> package org . eclipse . jdt . core . dom ; import java . io . File ; import java . io . IOException ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . Iterator ; import java . util . List ; import java . util . Map ; import org . codehaus . jdt . groovy . integration . LanguageSu...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class SuperConstructorInvocation extends Statement { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( SuperConstructorInvocation . class , "<STR_LIT>" , Expre...
<s> package org . eclipse . jdt . core . dom ; public final class ChildListPropertyDescriptor extends StructuralPropertyDescriptor { final Class elementType ; final boolean cycleRisk ; ChildListPropertyDescriptor ( Class nodeClass , String propertyId , Class elementType , boolean cycleRisk ) { super ( nodeClass , prope...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . jdt . core . compiler . InvalidInputException ; import org . eclipse . jdt . internal . compiler . parser . Scanner ; import org . eclipse . jdt . internal . compiler . parser . ScannerHelp...
<s> package org . eclipse . jdt . core . dom ; public final class SimplePropertyDescriptor extends StructuralPropertyDescriptor { private final Class valueType ; private final boolean mandatory ; SimplePropertyDescriptor ( Class nodeClass , String propertyId , Class valueType , boolean mandatory ) { super ( nodeClass ,...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class SwitchCase extends Statement { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( SwitchCase . class , "<STR_LIT>" , Expression . class , OPTIONAL , CYCLE...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class SynchronizedStatement extends Statement { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( SynchronizedStatement . class , "<STR_LIT>" , Expression . cl...
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . IAnnotation ; import org . eclipse . jdt . core . IJavaElement ; public interface IBinding { public static final int PACKAGE = <NUM_LIT:1> ; public static final int TYPE = <NUM_LIT:2> ; public static final int VARIABLE = <NUM_LIT:3> ; pu...
<s> package org . eclipse . jdt . core . dom ; import java . util . HashSet ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . compiler . classfmt . ClassFileConstants ; import org . eclipse . jdt . internal . compiler . lookup . Binding ; import org . eclipse . jdt...
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . WorkingCopyOwner ; import org . eclipse . jdt . internal . compiler . lookup . BlockScope ; import org . eclipse . jdt . internal . compiler . lookup . CompilationUnitScope ; import org . eclipse . jdt . internal . compiler . lookup . El...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class EnhancedForStatement extends Statement { public static final ChildPropertyDescriptor PARAMETER_PROPERTY = new ChildPropertyDescriptor ( EnhancedForStatement . class , "<STR_LIT>" , SingleVariableDecl...
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . IJavaElement ; class RecoveredVariableBinding implements IVariableBinding { private VariableDeclaration variableDeclaration ; private BindingResolver resolver ; RecoveredVariableBinding ( BindingResolver resolver , VariableDeclaration va...
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . IJavaElement ; import org . eclipse . jdt . core . JavaCore ; import org . eclipse . jdt . core . util . IModifierConstants ; import org . eclipse . jdt . internal . compiler . ast . AbstractMethodDeclaration ; import org . eclipse . jdt...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class SwitchStatement extends Statement { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( SwitchStatement . class , "<STR_LIT>" , Expression . class , MANDAT...
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . compiler . InvalidInputException ; import org . eclipse . jdt . internal . compiler . parser . Scanner ; import org . eclipse . jdt . internal . compiler . parser . TerminalTokens ; public abstract class Statement extends ASTNode { priva...
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . IJavaElement ; import org . eclipse . jdt . core . JavaCore ; import org . eclipse . jdt . internal . compiler . lookup . ExtraCompilerModifiers ; import org . eclipse . jdt . internal . compiler . lookup . LookupEnvironment ; import org...
<s> package org . eclipse . jdt . core . dom ; public interface IPackageBinding extends IBinding { public String getName ( ) ; public boolean isUnnamed ( ) ; public String [ ] getNameComponents ( ) ; } </s>
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; public class PrimitiveType extends Type { public static class Code { private String name ; Code ( String name ) { this . name = name ; } public String toS...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ExpressionStatement extends Statement { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( ExpressionStatement . class , "<STR_LIT>" , Expression . class ...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class BooleanLiteral extends Expression { public static final SimplePropertyDescriptor BOOLEAN_VALUE_PROPERTY = new SimplePropertyDescriptor ( BooleanLiteral . class , "<STR_LIT>" , boolean . class , MANDA...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class MethodDeclaration extends BodyDeclaration { public static final ChildPropertyDescriptor JAVADOC_PROPERTY = internalJavadocPropertyFactory ( MethodDeclaration . class ) ; public static final SimplePro...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class MethodInvocation extends Expression { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( MethodInvocation . class , "<STR_LIT>" , Expression . class , OPT...
<s> package org . eclipse . jdt . core . dom ; import java . util . HashSet ; import java . util . Iterator ; import java . util . List ; import java . util . Map ; import java . util . Set ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . OperationCanceledException ; ...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ConstructorInvocation extends Statement { public static final ChildListPropertyDescriptor TYPE_ARGUMENTS_PROPERTY = new ChildListPropertyDescriptor ( ConstructorInvocation . class , "<STR_LIT>" , Typ...
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . List ; public class SingleVariableDeclaration extends VariableDeclaration { public static final SimplePropertyDescriptor MODIFIERS_PROPERTY = new SimplePropertyDescriptor ( SingleVariable...
<s> package org . eclipse . jdt . core . dom ; import java . util . Iterator ; import java . util . List ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . core . compiler . InvalidInputException ; import org . eclipse . jdt . internal . compiler . classfmt . ClassFileConstant...
<s> import java . io . BufferedWriter ; import java . io . File ; import java . io . FileFilter ; import java . io . FileWriter ; import java . io . IOException ; import java . io . Writer ; import java . text . MessageFormat ; import java . util . ArrayList ; public class GenerateBuildScript { private static final Str...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . * ; import org . eclipse . jdt . internal . core . JavaModel ; import org . eclipse . jdt . internal . core . JavaModelManager ; import org . eclipse . jdt . internal . core . ...
<s> package org . eclipse . jdt . core . search ; public abstract class TypeNameMatchRequestor { public abstract void acceptTypeNameMatch ( TypeNameMatch match ) ; } </s>
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . IJavaElement ; public class PackageReferenceMatch extends ReferenceMatch { public PackageReferenceMatch ( IJavaElement enclosingElement , int accuracy , int offset , int length , b...
<s> package org . eclipse . jdt . core . search ; import org . codehaus . jdt . groovy . integration . LanguageSupportFactory ; import org . eclipse . core . resources . * ; import org . eclipse . core . runtime . * ; import org . eclipse . jdt . core . * ; import org . eclipse . jdt . internal . compiler . env . Acces...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . IJavaElement ; public class FieldReferenceMatch extends ReferenceMatch { private boolean isReadAccess ; private boolean isWriteAccess ; public FieldReferenceMatch ( IJavaElement en...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . jdt . internal . compiler . SourceElementParser ; import org . eclipse . jdt . internal . core . index . Index ; public abstract class SearchDocument { private Index index ; private String containerRelativePath ; private SourceElementParser parser...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . * ; public class TypeReferenceMatch extends ReferenceMatch { private IJavaElement [ ] otherElements ; public TypeReferenceMatch ( IJavaElement enclosingElement , int accuracy , int...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . IJavaElement ; public class PackageDeclarationMatch extends SearchMatch { public PackageDeclarationMatch ( IJavaElement element , int accuracy , int offset , int length , SearchPar...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . IJavaElement ; public class TypeDeclarationMatch extends SearchMatch { public TypeDeclarationMatch ( IJavaElement element , int accuracy , int offset , int length , SearchParticipa...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . IJavaElement ; public class LocalVariableReferenceMatch extends SearchMatch { private boolean isReadAccess ; private boolean isWriteAccess ; public LocalVariableReferenceMatch ( IJ...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . jdt . core . IJavaElement ; public interface IJavaSearchResultCollector { int ...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . runtime . CoreException ; public abstract class SearchRequestor { public abstract void acceptSearchMatch ( SearchMatch match ) throws CoreException ; public void beginReporting ( ) { } public void endReporting ( ) { } public void enterParti...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . IJavaElement ; public class TypeParameterReferenceMatch extends SearchMatch { public TypeParameterReferenceMatch ( IJavaElement enclosingElement , int accuracy , int offset , int l...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . IJavaElement ; public class FieldDeclarationMatch extends SearchMatch { public FieldDeclarationMatch ( IJavaElement element , int accuracy , int offset , int length , SearchPartici...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . jdt . core . * ; public abstract class TypeNameMatch { public abstract int getAccessibility ( ) ; public String getFullyQualifiedName ( ) { return getType ( ) . getFullyQualifiedName ( '<CHAR_LIT:.>' ) ; } public abstract int getModifiers ( ) ; pu...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . IJavaElement ; public class TypeParameterDeclarationMatch extends SearchMatch { public TypeParameterDeclarationMatch ( IJavaElement element , int accuracy , int offset , int length...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . IJavaElement ; public class MethodReferenceMatch extends ReferenceMatch { private boolean constructor ; private boolean synthetic ; private boolean superInvocation ; public MethodR...
<s> package org . eclipse . jdt . core . search ; import java . io . IOException ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . OperationCanceledException ; import org . eclipse . jdt . core . * ; import org . eclipse . jdt . core . compiler . * ; import org . eclip...
<s> package org . eclipse . jdt . core . search ; public interface ITypeNameRequestor { void acceptClass ( char [ ] packageName , char [ ] simpleTypeName , char [ ] [ ] enclosingTypeNames , String path ) ; void acceptInterface ( char [ ] packageName , char [ ] simpleTypeName , char [ ] [ ] enclosingTypeNames , String p...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . * ; public abstract class ReferenceMatch extends SearchMatch { IJavaElement localElement ; public ReferenceMatch ( IJavaElement enclosingElement , int accuracy , int offset , int l...
<s> package org . eclipse . jdt . core . search ; public abstract class TypeNameRequestor { public void acceptType ( int modifiers , char [ ] packageName , char [ ] simpleTypeName , char [ ] [ ] enclosingTypeNames , String path ) { } } </s>
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . IJavaElement ; public class MethodDeclarationMatch extends SearchMatch { public MethodDeclarationMatch ( IJavaElement element , int accuracy , int offset , int length , SearchParti...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . jdt . internal . core . search . processing . * ; public interface IJavaSearchConstants { int UNKNOWN = - <NUM_LIT:1> ; int TYPE = <NUM_LIT:0> ; int METHOD = <NUM_LIT:1> ; int PACKAGE = <NUM_LIT:2> ; int CONSTRUCTOR = <NUM_LIT:3> ; int FIELD = <NU...
<s> package org . eclipse . jdt . core . search ; public interface ISearchPattern { } </s>
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . IJavaElement ; public class LocalVariableDeclarationMatch extends SearchMatch { public LocalVariableDeclarationMatch ( IJavaElement element , int accuracy , int offset , int length...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . runtime . IPath ; import org . eclipse . jdt . core . IJavaElement ; public interface IJavaSearchScope { String JAR_FILE_ENTRY_SEPARATOR = "<STR_LIT:|>" ; int SOURCES = <NUM_LIT:1> ; int APPLICATION_LIBRARIES = <NUM_LIT:2> ; int SYSTEM_LIBR...
<s> package org . eclipse . jdt . core . search ; import org . eclipse . core . resources . IResource ; import org . eclipse . jdt . core . IJavaElement ; import org . eclipse . jdt . internal . core . JavaElement ; public class SearchMatch { public static final int A_ACCURATE = <NUM_LIT:0> ; public static final int A_...
<s> package org . eclipse . jdt . core . index ; import java . io . File ; import java . io . IOException ; import java . text . MessageFormat ; import java . util . ArrayList ; import org . eclipse . equinox . app . IApplication ; import org . eclipse . equinox . app . IApplicationContext ; import org . eclipse . osgi...
<s> package org . eclipse . jdt . core . index ; import java . io . IOException ; import org . eclipse . jdt . core . search . SearchEngine ; import org . eclipse . jdt . internal . core . search . indexing . DefaultJavaIndexer ; public final class JavaIndexer { public static void generateIndexForJar ( String pathToJar...