text stringlengths 30 1.67M |
|---|
<s> package org . eclipse . jdt . internal . compiler . classfmt ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . compiler . codegen . AttributeNamesConstants ; public class AnnotationMethodInfo extends MethodInfo { protected Object defaultValue = null ; public st... |
<s> package org . eclipse . jdt . internal . compiler . classfmt ; import java . util . Arrays ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . compiler . ast . Annotation ; import org . eclipse . jdt . internal . compiler . codegen . ConstantPool ; import org . e... |
<s> package org . eclipse . jdt . internal . compiler . classfmt ; import java . io . File ; import java . io . IOException ; import java . io . InputStream ; import java . util . Arrays ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . compiler . codegen . Attribu... |
<s> package org . eclipse . jdt . internal . compiler . classfmt ; abstract public class ClassFileStruct { byte [ ] reference ; int [ ] constantPoolOffsets ; int structOffset ; public ClassFileStruct ( byte [ ] classFileBytes , int [ ] offsets , int offset ) { this . reference = classFileBytes ; this . constantPoolOffs... |
<s> package org . eclipse . jdt . internal . compiler . classfmt ; import org . eclipse . jdt . internal . compiler . ast . ASTNode ; public interface ClassFileConstants { int AccDefault = <NUM_LIT:0> ; int AccPublic = <NUM_LIT> ; int AccPrivate = <NUM_LIT> ; int AccProtected = <NUM_LIT> ; int AccStatic = <NUM_LIT> ; i... |
<s> package org . eclipse . jdt . internal . compiler . classfmt ; import org . eclipse . jdt . internal . compiler . env . IBinaryAnnotation ; public class MethodInfoWithAnnotations extends MethodInfo { protected AnnotationInfo [ ] annotations ; MethodInfoWithAnnotations ( MethodInfo methodInfo , AnnotationInfo [ ] an... |
<s> package org . eclipse . jdt . internal . compiler . classfmt ; import java . io . PrintStream ; import java . io . PrintWriter ; public class ClassFormatException extends Exception { public static final int ErrBadMagic = <NUM_LIT:1> ; public static final int ErrBadMinorVersion = <NUM_LIT:2> ; public static final in... |
<s> package org . eclipse . jdt . internal . compiler . classfmt ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . compiler . codegen . AttributeNamesConstants ; import org . eclipse . jdt . internal . compiler . env . IBinaryAnnotation ; import org . eclipse . jdt... |
<s> package org . eclipse . jdt . internal . compiler ; public interface ICompilerRequestor { public void acceptResult ( CompilationResult result ) ; } </s> |
<s> package org . eclipse . jdt . internal . compiler ; import org . eclipse . jdt . internal . compiler . ast . CompilationUnitDeclaration ; import org . eclipse . jdt . internal . compiler . util . Messages ; public class ProcessTaskManager implements Runnable { Compiler compiler ; private int unitIndex ; private Thr... |
<s> package org . eclipse . jdt . internal . compiler ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . Collections ; import java . util . Comparator ; import java . util . HashSet ; import java . util . List ; import java . util . Set ; import org . eclipse . jdt . core . compiler .... |
<s> package org . eclipse . jdt . internal . compiler ; import java . util . Arrays ; import java . util . Comparator ; import java . util . HashMap ; import java . util . HashSet ; import java . util . Hashtable ; import java . util . Iterator ; import java . util . Map ; import java . util . Set ; import org . eclips... |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface IGenericType extends IDependent { int getModifiers ( ) ; boolean isBinaryType ( ) ; } </s> |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface ISourceType extends IGenericType { int getDeclarationSourceEnd ( ) ; int getDeclarationSourceStart ( ) ; ISourceType getEnclosingType ( ) ; ISourceField [ ] getFields ( ) ; char [ ] [ ] getInterfaceNames ( ) ; ISourceType [ ] getMemberTypes ... |
<s> package org . eclipse . jdt . internal . compiler . env ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . core . compiler . IProblem ; public class AccessRule { public static final int IgnoreIfBetter = <NUM_LIT> ; public char [ ] pattern ; public int problemId ; public Ac... |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface IBinaryAnnotation { char [ ] getTypeName ( ) ; IBinaryElementValuePair [ ] getElementValuePairs ( ) ; } </s> |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface IDependent { char JAR_FILE_ENTRY_SEPARATOR = '<CHAR_LIT>' ; char [ ] getFileName ( ) ; } </s> |
<s> package org . eclipse . jdt . internal . compiler . env ; import java . util . Arrays ; import org . eclipse . jdt . core . compiler . CharOperation ; public class ClassSignature { char [ ] className ; public ClassSignature ( final char [ ] className ) { this . className = className ; } public char [ ] getTypeName ... |
<s> package org . eclipse . jdt . internal . compiler . env ; import java . util . Arrays ; import org . eclipse . jdt . core . compiler . CharOperation ; public class EnumConstantSignature { char [ ] typeName ; char [ ] constName ; public EnumConstantSignature ( char [ ] typeName , char [ ] constName ) { this . typeNa... |
<s> package org . eclipse . jdt . internal . compiler . env ; import org . eclipse . jdt . internal . compiler . impl . Constant ; public interface IBinaryField extends IGenericField { IBinaryAnnotation [ ] getAnnotations ( ) ; Constant getConstant ( ) ; char [ ] getGenericSignature ( ) ; char [ ] getName ( ) ; long ge... |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface ISourceMethod extends IGenericMethod { int getDeclarationSourceEnd ( ) ; int getDeclarationSourceStart ( ) ; char [ ] [ ] getExceptionTypeNames ( ) ; int getNameSourceEnd ( ) ; int getNameSourceStart ( ) ; char [ ] getReturnTypeName ( ) ; ch... |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface IBinaryMethod extends IGenericMethod { IBinaryAnnotation [ ] getAnnotations ( ) ; Object getDefaultValue ( ) ; char [ ] [ ] getExceptionTypeNames ( ) ; char [ ] getGenericSignature ( ) ; char [ ] getMethodDescriptor ( ) ; IBinaryAnnotation [... |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface ISourceField extends IGenericField { int getDeclarationSourceEnd ( ) ; int getDeclarationSourceStart ( ) ; char [ ] getInitializationSource ( ) ; int getNameSourceEnd ( ) ; int getNameSourceStart ( ) ; char [ ] getTypeName ( ) ; } </s> |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface IBinaryNestedType { char [ ] getEnclosingTypeName ( ) ; int getModifiers ( ) ; char [ ] getName ( ) ; } </s> |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface INameEnvironment { NameEnvironmentAnswer findType ( char [ ] [ ] compoundTypeName ) ; NameEnvironmentAnswer findType ( char [ ] typeName , char [ ] [ ] packageName ) ; boolean isPackage ( char [ ] [ ] parentPackageName , char [ ] packageName... |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface IGenericField { int getModifiers ( ) ; } </s> |
<s> package org . eclipse . jdt . internal . compiler . env ; import org . eclipse . jdt . core . compiler . CharOperation ; public interface IBinaryType extends IGenericType { char [ ] [ ] NoInterface = CharOperation . NO_CHAR_CHAR ; IBinaryNestedType [ ] NoNestedType = new IBinaryNestedType [ <NUM_LIT:0> ] ; IBinaryF... |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface ICompilationUnit extends IDependent { char [ ] getContents ( ) ; char [ ] getMainTypeName ( ) ; char [ ] [ ] getPackageName ( ) ; } </s> |
<s> package org . eclipse . jdt . internal . compiler . env ; public class AccessRestriction { private AccessRule accessRule ; public byte classpathEntryType ; public static final byte COMMAND_LINE = <NUM_LIT:0> , PROJECT = <NUM_LIT:1> , LIBRARY = <NUM_LIT:2> ; public String classpathEntryName ; public AccessRestrictio... |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface ISourceImport { int getDeclarationSourceEnd ( ) ; int getDeclarationSourceStart ( ) ; int getModifiers ( ) ; } </s> |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface IBinaryElementValuePair { char [ ] getName ( ) ; Object getValue ( ) ; } </s> |
<s> package org . eclipse . jdt . internal . compiler . env ; public interface IGenericMethod { int getModifiers ( ) ; boolean isConstructor ( ) ; char [ ] [ ] getArgumentNames ( ) ; } </s> |
<s> package org . eclipse . jdt . internal . compiler . env ; public class NameEnvironmentAnswer { IBinaryType binaryType ; ICompilationUnit compilationUnit ; ISourceType [ ] sourceTypes ; AccessRestriction accessRestriction ; public NameEnvironmentAnswer ( IBinaryType binaryType , AccessRestriction accessRestriction )... |
<s> package org . eclipse . jdt . internal . compiler . env ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . core . compiler . IProblem ; public class AccessRuleSet { private AccessRule [ ] accessRules ; public byte classpathEntryType ; public String classpathEntryName ; pub... |
<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 . 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 . 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 . 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 . 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 ; 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 . 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> 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 . internal . core . dom . rewrite ; import java . util . * ; import org . eclipse . jdt . core . Signature ; import org . eclipse . jdt . core . dom . ASTNode ; import org . eclipse . jdt . core . dom . Block ; import org . eclipse . jdt . core . dom . StructuralPropertyDescriptor ; impo... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; import org . eclipse . jdt . core . dom . CompilationUnit ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . IDocument ; public abstract class LineInformation { public static LineInformation create ( fi... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; public class NodeRewriteEvent extends RewriteEvent { private Object originalValue ; private Object newValue ; public NodeRewriteEvent ( Object originalValue , Object newValue ) { this . originalValue = originalValue ; this . newValue = newValue ; } pub... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; import java . util . ArrayList ; import java . util . IdentityHashMap ; import java . util . Iterator ; import java . util . List ; import java . util . Map ; import java . util . Stack ; import org . eclipse . core . runtime . Assert ; import org . ec... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . Status ; import org . eclipse . jdt . core . JavaCore ; import org . eclipse . jdt . core . compiler . Inv... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . jdt . core . dom . ASTNode ; public class ListRewriteEvent extends RewriteEvent { public final static int NEW = <NUM_LIT:1> ; public final static int OLD = <NUM_LIT:2> ... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; import java . util . HashSet ; import java . util . IdentityHashMap ; import java . util . Map ; import java . util . Set ; import org . eclipse . jdt . core . dom . AST ; import org . eclipse . jdt . core . dom . ASTNode ; import org . eclipse . jdt .... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . jdt . core . formatter . IndentManipulation ; import org . eclipse . text . edits . ISourceModifier ; import org . eclipse . text . edits . ReplaceEdit ; public class S... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; public abstract class RewriteEvent { public static final int INSERTED = <NUM_LIT:1> ; public static final int REMOVED = <NUM_LIT:2> ; public static final int REPLACED = <NUM_LIT:4> ; public static final int CHILDREN_CHANGED = <NUM_LIT:8> ; public stati... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; import org . eclipse . text . edits . TextEdit ; import org . eclipse . text . edits . TextEditGroup ; import org . eclipse . jdt . core . dom . ASTNode ; import org . eclipse . jdt . core . dom . rewrite . ITrackedNodePosition ; import org . eclipse .... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; import java . util . ArrayList ; import java . util . Collection ; import java . util . HashMap ; import java . util . Map ; import org . eclipse . core . runtime . Assert ; import org . eclipse . jdt . core . JavaCore ; import org . eclipse . jdt . co... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . HashSet ; import java . util . List ; import java . util . Set ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . Nul... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; import java . util . Arrays ; import java . util . List ; import org . eclipse . jdt . core . dom . LineComment ; import org . eclipse . jdt . core . formatter . IndentManipulation ; import org . eclipse . jdt . internal . compiler . util . Util ; publ... |
<s> package org . eclipse . jdt . internal . core . dom . rewrite ; import java . util . List ; import org . eclipse . jdt . core . dom . * ; import org . eclipse . jdt . internal . compiler . util . Util ; public class ASTRewriteFlattener extends ASTVisitor { static final int JLS2_INTERNAL = AST . JLS2 ; public static... |
<s> package org . eclipse . jdt . internal . core . dom ; import java . util . Iterator ; import java . util . List ; import org . eclipse . jdt . core . dom . AST ; import org . eclipse . jdt . core . dom . ASTNode ; import org . eclipse . jdt . core . dom . ASTVisitor ; import org . eclipse . jdt . core . dom . Abstr... |
<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 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 ; 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 . 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 . 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 ; 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 ; 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 org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . OperationCanceledException ; import org . eclipse . jdt . internal . compiler . batch . FileSystem ; import org . eclipse . jdt . internal . compiler . env . NameEnvironmentA... |
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . dom . BindingResolver ; import org . eclipse . jdt . core . dom . IMethodBinding ; class DefaultValuePairBinding extends MemberValuePairBinding { private org . eclipse . jdt . internal . compiler . lookup . MethodBinding method ; Default... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class InstanceofExpression extends Expression { public static final ChildPropertyDescriptor LEFT_OPERAND_PROPERTY = new ChildPropertyDescriptor ( InstanceofExpression . class , "<STR_LIT>" , Expression . c... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ForStatement extends Statement { public static final ChildListPropertyDescriptor INITIALIZERS_PROPERTY = new ChildListPropertyDescriptor ( ForStatement . class , "<STR_LIT>" , Expression . class , CY... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ArrayCreation extends Expression { public static final ChildPropertyDescriptor TYPE_PROPERTY = new ChildPropertyDescriptor ( ArrayCreation . class , "<STR_LIT:type>" , ArrayType . class , MANDATORY ,... |
<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 ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; public class Assignment extends Expression { public static class Operator { private String op ; private Operator ( String op ) { this . op = op ; } public... |
<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 ; public abstract class StructuralPropertyDescriptor { private final String propertyId ; private final Class nodeClass ; StructuralPropertyDescriptor ( Class nodeClass , String propertyId ) { if ( nodeClass == null || propertyId == null ) { throw new IllegalArgumentException... |
<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 ; public abstract class Expression extends ASTNode { Expression ( AST ast ) { super ( ast ) ; } public final Object resolveConstantExpressionValue ( ) { return this . ast . getBindingResolver ( ) . resolveConstantExpressionValue ( this ) ; } public final ITypeBinding resolve... |
<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 . 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 ; public interface IExtendedModifier { public boolean isModifier ( ) ; public boolean isAnnotation ( ) ; } </s> |
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . ICompilationUnit ; public abstract class ASTRequestor { CompilationUnitResolver compilationUnitResolver = null ; protected ASTRequestor ( ) { } public void acceptAST ( ICompilationUnit source , CompilationUnit ast ) { } public void accep... |
<s> package org . eclipse . jdt . core . dom ; public interface IAnnotationBinding extends IBinding { IMemberValuePairBinding [ ] getAllMemberValuePairs ( ) ; ITypeBinding getAnnotationType ( ) ; IMemberValuePairBinding [ ] getDeclaredMemberValuePairs ( ) ; public String getName ( ) ; } </s> |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ConditionalExpression extends Expression { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( ConditionalExpression . class , "<STR_LIT>" , Expression . c... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class MemberRef extends ASTNode implements IDocElement { public static final ChildPropertyDescriptor QUALIFIER_PROPERTY = new ChildPropertyDescriptor ( MemberRef . class , "<STR_LIT>" , Name . class , OPTI... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public final class NormalAnnotation extends Annotation { public static final ChildPropertyDescriptor TYPE_NAME_PROPERTY = internalTypeNamePropertyFactory ( NormalAnnotation . class ) ; public static final ChildLi... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class Block extends Statement { public static final ChildListPropertyDescriptor STATEMENTS_PROPERTY = new ChildListPropertyDescriptor ( Block . class , "<STR_LIT>" , Statement . class , CYCLE_RISK ) ; priv... |
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . internal . compiler . ASTVisitor ; import org . eclipse . jdt . internal . compiler . ast . ConstructorDeclaration ; import org . eclipse . jdt . internal . compiler . ast . FieldDeclaration ; import org . eclipse . jdt . internal . compiler . ... |
<s> package org . eclipse . jdt . core . dom ; import org . eclipse . jdt . core . IJavaElement ; import org . eclipse . jdt . core . JavaCore ; import org . eclipse . jdt . core . compiler . CharOperation ; import org . eclipse . jdt . internal . compiler . ast . StringLiteral ; import org . eclipse . jdt . internal .... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . Collections ; import java . util . List ; import java . util . Map ; import org . eclipse . jdt . core . IJavaElement ; import org . eclipse . jdt . core . ITypeRoot ; import org . eclipse ... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class MemberValuePair extends ASTNode { public static final ChildPropertyDescriptor NAME_PROPERTY = new ChildPropertyDescriptor ( MemberValuePair . class , "<STR_LIT:name>" , SimpleName . class , MANDATORY... |
<s> package org . eclipse . jdt . core . dom ; import java . util . Iterator ; import java . util . List ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . Status ; import org . eclipse . jdt . core . ICompilationUnit ; import org . eclipse . jdt . core . IJavaElement ; import o... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class AssertStatement extends Statement { public static final ChildPropertyDescriptor EXPRESSION_PROPERTY = new ChildPropertyDescriptor ( AssertStatement . class , "<STR_LIT>" , Expression . class , MANDAT... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class EnumDeclaration extends AbstractTypeDeclaration { public static final ChildPropertyDescriptor JAVADOC_PROPERTY = internalJavadocPropertyFactory ( EnumDeclaration . class ) ; public static final Child... |
<s> package org . eclipse . jdt . core . dom ; public abstract class Type extends ASTNode { Type ( AST ast ) { super ( ast ) ; } public final boolean isPrimitiveType ( ) { return ( this instanceof PrimitiveType ) ; } public final boolean isSimpleType ( ) { return ( this instanceof SimpleType ) ; } public final boolean ... |
<s> package org . eclipse . jdt . core . dom ; public interface IMethodBinding extends IBinding { public boolean isConstructor ( ) ; public boolean isDefaultConstructor ( ) ; public String getName ( ) ; public ITypeBinding getDeclaringClass ( ) ; public Object getDefaultValue ( ) ; public IAnnotationBinding [ ] getPara... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class TypeParameter extends ASTNode { public static final ChildPropertyDescriptor NAME_PROPERTY = new ChildPropertyDescriptor ( TypeParameter . class , "<STR_LIT:name>" , SimpleName . class , MANDATORY , N... |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class QualifiedType extends Type { int index ; public static final ChildPropertyDescriptor QUALIFIER_PROPERTY = new ChildPropertyDescriptor ( QualifiedType . class , "<STR_LIT>" , Type . class , MANDATORY ... |
<s> package org . eclipse . jdt . core . dom ; public abstract class Comment extends ASTNode { private ASTNode alternateRoot = null ; Comment ( AST ast ) { super ( ast ) ; } public final boolean isBlockComment ( ) { return ( this instanceof BlockComment ) ; } public final boolean isLineComment ( ) { return ( this insta... |
<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 PrefixExpression extends Expression { public static class Operator { private String token ; private Operator ( String token ) { this . token ... |
<s> package org . eclipse . jdt . core . dom ; interface IDocElement { } </s> |
<s> package org . eclipse . jdt . core . dom ; import java . util . ArrayList ; import java . util . List ; public class ContinueStatement extends Statement { public static final ChildPropertyDescriptor LABEL_PROPERTY = new ChildPropertyDescriptor ( ContinueStatement . class , "<STR_LIT:label>" , SimpleName . class , O... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.