org.jetbrains.jet.lang.resolve.java
Enum AnalyzerFacadeForJVM

java.lang.Object
  extended by java.lang.Enum<AnalyzerFacadeForJVM>
      extended by org.jetbrains.jet.lang.resolve.java.AnalyzerFacadeForJVM
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AnalyzerFacadeForJVM>, AnalyzerFacade

public enum AnalyzerFacadeForJVM
extends java.lang.Enum<AnalyzerFacadeForJVM>
implements AnalyzerFacade


Nested Class Summary
static class AnalyzerFacadeForJVM.JvmSetup
           
 
Nested classes/interfaces inherited from interface org.jetbrains.jet.analyzer.AnalyzerFacade
AnalyzerFacade.BasicSetup, AnalyzerFacade.Setup
 
Enum Constant Summary
INSTANCE
           
 
Field Summary
static java.util.List<ImportPath> DEFAULT_IMPORTS
           
 
Method Summary
static AnalyzeExhaust analyzeFilesWithJavaIntegration(com.intellij.openapi.project.Project project, java.util.Collection<JetFile> files, BindingTrace trace, com.google.common.base.Predicate<com.intellij.psi.PsiFile> filesToAnalyzeCompletely, ModuleDescriptorImpl module, java.util.List<java.lang.String> moduleIds, java.io.File incrementalCacheDir)
           
static ModuleDescriptorImpl createJavaModule(java.lang.String name)
           
static ResolveSession createLazyResolveSession(com.intellij.openapi.project.Project project, java.util.Collection<JetFile> files, BindingTrace trace, boolean addBuiltIns)
           
 AnalyzerFacadeForJVM.JvmSetup createSetup(com.intellij.openapi.project.Project fileProject, java.util.Collection<JetFile> files)
           
static AnalyzerFacadeForJVM valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AnalyzerFacadeForJVM[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INSTANCE

public static final AnalyzerFacadeForJVM INSTANCE
Field Detail

DEFAULT_IMPORTS

public static final java.util.List<ImportPath> DEFAULT_IMPORTS
Method Detail

values

public static AnalyzerFacadeForJVM[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (AnalyzerFacadeForJVM c : AnalyzerFacadeForJVM.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AnalyzerFacadeForJVM valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

createSetup

@NotNull
public AnalyzerFacadeForJVM.JvmSetup createSetup(@NotNull
                                                         com.intellij.openapi.project.Project fileProject,
                                                         @NotNull
                                                         java.util.Collection<JetFile> files)
Specified by:
createSetup in interface AnalyzerFacade

createLazyResolveSession

@NotNull
public static ResolveSession createLazyResolveSession(@NotNull
                                                              com.intellij.openapi.project.Project project,
                                                              @NotNull
                                                              java.util.Collection<JetFile> files,
                                                              @NotNull
                                                              BindingTrace trace,
                                                              boolean addBuiltIns)

analyzeFilesWithJavaIntegration

@NotNull
public static AnalyzeExhaust analyzeFilesWithJavaIntegration(com.intellij.openapi.project.Project project,
                                                                     java.util.Collection<JetFile> files,
                                                                     BindingTrace trace,
                                                                     com.google.common.base.Predicate<com.intellij.psi.PsiFile> filesToAnalyzeCompletely,
                                                                     ModuleDescriptorImpl module,
                                                                     java.util.List<java.lang.String> moduleIds,
                                                                     java.io.File incrementalCacheDir)

createJavaModule

@NotNull
public static ModuleDescriptorImpl createJavaModule(@NotNull
                                                            java.lang.String name)