Uses of Class
org.eclipse.jdt.internal.compiler.ast.StringLiteral

Packages that use StringLiteral
org.eclipse.jdt.internal.codeassist.complete   
org.eclipse.jdt.internal.compiler   
org.eclipse.jdt.internal.compiler.ast   
org.eclipse.jdt.internal.compiler.parser   
org.eclipse.jdt.internal.formatter   
 

Uses of StringLiteral in org.eclipse.jdt.internal.codeassist.complete
 

Subclasses of StringLiteral in org.eclipse.jdt.internal.codeassist.complete
 class CompletionOnStringLiteral
           
 

Methods in org.eclipse.jdt.internal.codeassist.complete that return StringLiteral
protected  StringLiteral CompletionParser.createStringLiteral(char[] token, int start, int end, int lineNumber)
           
 

Methods in org.eclipse.jdt.internal.codeassist.complete with parameters of type StringLiteral
 boolean CompletionNodeDetector.visit(StringLiteral stringLiteral, BlockScope scope)
           
 

Uses of StringLiteral in org.eclipse.jdt.internal.compiler
 

Methods in org.eclipse.jdt.internal.compiler with parameters of type StringLiteral
 void ASTVisitor.endVisit(StringLiteral stringLiteral, BlockScope scope)
           
 boolean ASTVisitor.visit(StringLiteral stringLiteral, BlockScope scope)
           
 

Uses of StringLiteral in org.eclipse.jdt.internal.compiler.ast
 

Subclasses of StringLiteral in org.eclipse.jdt.internal.compiler.ast
 class ExtendedStringLiteral
           
 class StringLiteralConcatenation
          Flatten string literal
 

Methods in org.eclipse.jdt.internal.compiler.ast with parameters of type StringLiteral
 StringLiteralConcatenation StringLiteralConcatenation.extendsWith(StringLiteral lit)
          Add the lit source to mine, just as if it was mine
 StringLiteralConcatenation StringLiteral.extendsWith(StringLiteral lit)
          Add the lit source to mine, just as if it was mine
 ExtendedStringLiteral StringLiteral.extendWith(StringLiteral lit)
           
 ExtendedStringLiteral ExtendedStringLiteral.extendWith(StringLiteral lit)
          Add the lit source to mine, just as if it was mine
 void CompilationUnitDeclaration.recordStringLiteral(StringLiteral literal, boolean fromRecovery)
           
 

Constructors in org.eclipse.jdt.internal.compiler.ast with parameters of type StringLiteral
ExtendedStringLiteral(StringLiteral str, CharLiteral character)
          Build a string+char literal
ExtendedStringLiteral(StringLiteral str1, StringLiteral str2)
          Build a two-strings literal
StringLiteralConcatenation(StringLiteral str1, StringLiteral str2)
          Build a two-strings literal
 

Uses of StringLiteral in org.eclipse.jdt.internal.compiler.parser
 

Methods in org.eclipse.jdt.internal.compiler.parser that return StringLiteral
protected  StringLiteral Parser.createStringLiteral(char[] token, int start, int end, int lineNumber)
           
 

Uses of StringLiteral in org.eclipse.jdt.internal.formatter
 

Methods in org.eclipse.jdt.internal.formatter with parameters of type StringLiteral
 boolean CodeFormatterVisitor.visit(StringLiteral stringLiteral, BlockScope scope)