text stringlengths 30 1.67M |
|---|
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ImportDeclaration extends ASTNode { public static final ChildPropertyDescriptor NAME_PROPERTY = new ChildPropertyDescriptor ( ImportDeclaration . class , "<STR_LIT:name>" , Name . class , MANDATORY ,... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class Initializer extends BodyDeclaration { public static final ChildPropertyDescriptor JAVADOC_PROPERTY = internalJavadocPropertyFactory ( Initializer . class ) ; public static final SimplePropertyDescrip... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class SuperMethodInvocation extends Expression { public static final ChildPropertyDescriptor QUALIFIER_PROPERTY = new ChildPropertyDescriptor ( SuperMethodInvocation . class , "<STR_LIT>" , Name . class , ... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public final class MarkerAnnotation extends Annotation { public static final ChildPropertyDescriptor TYPE_NAME_PROPERTY = internalTypeNamePropertyFactory ( MarkerAnnotation . class ) ; private static final List P... |
<s> package org . eclipse . jdt . core . dom ; public abstract class ASTVisitor { private boolean visitDocTags ; public ASTVisitor ( ) { this ( false ) ; } public ASTVisitor ( boolean visitDocTags ) { this . visitDocTags = visitDocTags ; } public void preVisit ( ASTNode node ) { } public boolean preVisit2 ( ASTNode nod... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . jdt . internal . compiler . util . Util ; public final class TextElement extends ASTNode implements IDocElement { public static final SimplePropertyDescriptor TEXT_PROPERTY = new SimpleProp... |
<s> package org . eclipse . jdt . core . dom ; import java . util . List ; public abstract class AbstractTypeDeclaration extends BodyDeclaration { SimpleName typeName = null ; ASTNode . NodeList bodyDeclarations ; abstract ChildListPropertyDescriptor internalBodyDeclarationsProperty ( ) ; public final ChildListProperty... |
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . IBuffer ; import org . eclipse . jdt . core . ISourceRange ; import org . eclipse . jdt . core . ITypeRoot ; import org . eclipse . jdt . core . JavaModelException ; import org . eclipse . jdt . core . ToolFactory ; import org . eclipse ... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class DoStatement extends Statement { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( DoStatement . class , "<STR_LIT>" , Expression . class , MANDATORY , CY... |
<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 org . eclipse . jdt . core . IJavaElement ; import org . eclipse . jdt . internal . compiler . impl . Constant ; import org . eclipse . jdt . internal . compiler . lookup . ElementValuePair ; import org . eclipse . jdt . internal . compiler . lookup . MethodBinding ... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class NullLiteral extends Expression { private static final List PROPERTY_DESCRIPTORS ; static { List propertyList = new ArrayList ( <NUM_LIT:1> ) ; createPropertyList ( NullLiteral . class , propertyList ... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ThrowStatement extends Statement { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( ThrowStatement . class , "<STR_LIT>" , Expression . class , MANDATOR... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class AnnotationTypeMemberDeclaration extends BodyDeclaration { public static final ChildPropertyDescriptor JAVADOC_PROPERTY = internalJavadocPropertyFactory ( AnnotationTypeMemberDeclaration . class ) ; p... |
<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 . rewrite ; import java . util . Collections ; import java . util . List ; import org . eclipse . jdt . core . dom . ASTNode ; import org . eclipse . jdt . core . dom . Block ; import org . eclipse . jdt . core . dom . ChildListPropertyDescriptor ; import org . eclipse . jdt... |
<s> package org . eclipse . jdt . core . dom . rewrite ; import java . util . HashMap ; import java . util . Iterator ; import java . util . List ; import java . util . Map ; import org . eclipse . jdt . core . IClassFile ; import org . eclipse . jdt . core . ICompilationUnit ; import org . eclipse . jdt . core . IType... |
<s> package org . eclipse . jdt . core . dom . rewrite ; public interface ITrackedNodePosition { public int getStartPosition ( ) ; public int getLength ( ) ; } </s> |
<s> package org . eclipse . jdt . core . dom . rewrite ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core .... |
<s> package org . eclipse . jdt . core . dom . rewrite ; import org . eclipse . jdt . core . dom . ASTNode ; import org . eclipse . jdt . core . dom . CompilationUnit ; public class TargetSourceRangeComputer { public static final class SourceRange { private int startPosition ; private int length ; public SourceRange ( ... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ClassInstanceCreation extends Expression { public static final ChildListPropertyDescriptor TYPE_ARGUMENTS_PROPERTY = new ChildListPropertyDescriptor ( ClassInstanceCreation . class , "<STR_LIT>" , Ty... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . List ; public class TypeDeclaration extends AbstractTypeDeclaration { public static final ChildPropertyDescriptor JAVADOC_PROPERTY = internalJavadocPropertyFactory ( TypeDeclaration . cla... |
<s> package org . eclipse . jdt . core . dom ; public abstract class VariableDeclaration extends ASTNode { abstract SimplePropertyDescriptor internalExtraDimensionsProperty ( ) ; public final SimplePropertyDescriptor getExtraDimensionsProperty ( ) { return internalExtraDimensionsProperty ( ) ; } abstract ChildPropertyD... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class BreakStatement extends Statement { public static final ChildPropertyDescriptor LABEL_PROPERTY = new ChildPropertyDescriptor ( BreakStatement . class , "<STR_LIT:label>" , SimpleName . class , OPTIONA... |
<s> package org . eclipse . jdt . core . dom ; public interface IMemberValuePairBinding extends IBinding { public String getName ( ) ; public IMethodBinding getMethodBinding ( ) ; public Object getValue ( ) ; public boolean isDefault ( ) ; } </s> |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class SimpleType extends Type { public static final ChildPropertyDescriptor NAME_PROPERTY = new ChildPropertyDescriptor ( SimpleType . class , "<STR_LIT:name>" , Name . class , MANDATORY , NO_CYCLE_RISK ) ... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class TypeDeclarationStatement extends Statement { public static final ChildPropertyDescriptor TYPE_DECLARATION_PROPERTY = new ChildPropertyDescriptor ( TypeDeclarationStatement . class , "<STR_LIT>" , Typ... |
<s> package org . eclipse . jdt . core . dom ; public interface ITypeBinding extends IBinding { public ITypeBinding createArrayType ( int dimension ) ; public String getBinaryName ( ) ; public ITypeBinding getBound ( ) ; public ITypeBinding getGenericTypeOfWildcardType ( ) ; public int getRank ( ) ; public ITypeBinding... |
<s> package org . eclipse . jdt . core . dom ; class NodeEventHandler { NodeEventHandler ( ) { } void preRemoveChildEvent ( ASTNode node , ASTNode child , StructuralPropertyDescriptor property ) { } void postRemoveChildEvent ( ASTNode node , ASTNode child , StructuralPropertyDescriptor property ) { } void preReplaceChi... |
<s> package org . eclipse . jdt . core . dom ; import java . lang . reflect . Constructor ; import java . lang . reflect . InvocationTargetException ; import java . util . ArrayList ; import java . util . List ; import java . util . Map ; import java . util . StringTokenizer ; import org . eclipse . core . runtime . IP... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ReturnStatement extends Statement { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( ReturnStatement . class , "<STR_LIT>" , Expression . class , OPTION... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class AnonymousClassDeclaration extends ASTNode { public static final ChildListPropertyDescriptor BODY_DECLARATIONS_PROPERTY = new ChildListPropertyDescriptor ( AnonymousClassDeclaration . class , "<STR_LI... |
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . IAnnotatable ; import org . eclipse . jdt . core . ICompilationUnit ; import org . eclipse . jdt . core . IJavaElement ; import org . eclipse . jdt . core . IMember ; import org . eclipse . jdt . internal . compiler . lookup . ElementVal... |
<s> package org . eclipse . jdt . core . dom ; import java . util . Hashtable ; import java . util . List ; import java . util . Map ; import org . eclipse . text . edits . MultiTextEdit ; import org . eclipse . text . edits . TextEdit ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . t... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class IfStatement extends Statement { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( IfStatement . class , "<STR_LIT>" , Expression . class , MANDATORY , CY... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class FieldDeclaration extends BodyDeclaration { public static final ChildPropertyDescriptor JAVADOC_PROPERTY = internalJavadocPropertyFactory ( FieldDeclaration . class ) ; public static final SimplePrope... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class MethodRefParameter extends ASTNode { public static final ChildPropertyDescriptor TYPE_PROPERTY = new ChildPropertyDescriptor ( MethodRefParameter . class , "<STR_LIT:type>" , Type . class , MANDATORY... |
<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 class LabeledStatement extends Statement { public static final ChildPropertyDescriptor LABEL_PROPERTY = new ChildPropertyDescriptor ( LabeledStatement . class , "<STR_LIT:label>" , SimpleName . class , MAN... |
<s> package org . eclipse . jdt . core . dom ; import java . util . List ; import org . eclipse . jdt . core . IJavaElement ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . compiler . lookup . ArrayBinding ; import org . eclipse . jdt . internal . compiler . looku... |
<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 VariableDeclarationFragment extends VariableDeclaration { public static final ChildPropertyDescriptor NAME_PROPERTY = new ChildPropertyDescriptor ( VariableDeclarationFragment . class , "<STR_LIT:nam... |
<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 FieldAccess extends Expression { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( FieldAccess . class , "<STR_LIT>" , Expression . class , MANDATORY , C... |
<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 CatchClause extends ASTNode { public static final ChildPropertyDescriptor EXCEPTION_PROPERTY = new ChildPropertyDescriptor ( CatchClause . class , "<STR_LIT>" , SingleVariableDeclaration . class , MA... |
<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 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 ; 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 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 . 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 . 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 ; 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 . 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 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 ; 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 ; import java . util . Iterator ; import java . util . List ; public class ASTMatcher { private boolean matchDocTags ; public ASTMatcher ( ) { this ( false ) ; } public ASTMatcher ( boolean matchDocTags ) { this . matchDocTags = matchDocTags ; } public final boolean safeSubt... |
<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 ; 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 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 ; 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 ; 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 ; 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 . 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 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 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 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 ; 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 . 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 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 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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.