001/* 002 * Copyright 2010-2013 JetBrains s.r.o. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 017package org.jetbrains.jet.lang.resolve; 018 019import com.google.common.base.Function; 020import com.intellij.psi.PsiElement; 021import org.jetbrains.annotations.NotNull; 022import org.jetbrains.jet.lang.descriptors.*; 023import org.jetbrains.jet.lang.descriptors.impl.MutableClassDescriptor; 024import org.jetbrains.jet.lang.psi.*; 025import org.jetbrains.jet.lang.resolve.scopes.JetScope; 026import org.jetbrains.jet.lang.resolve.scopes.WritableScope; 027 028import java.util.Collection; 029import java.util.Map; 030 031public interface BodiesResolveContext { 032 Collection<JetFile> getFiles(); 033 Map<JetClass, MutableClassDescriptor> getClasses(); 034 Map<JetObjectDeclaration, MutableClassDescriptor> getObjects(); 035 Map<JetProperty, PropertyDescriptor> getProperties(); 036 Map<JetNamedFunction, SimpleFunctionDescriptor> getFunctions(); 037 Function<JetDeclaration, JetScope> getDeclaringScopes(); 038 Map<JetScript, ScriptDescriptor> getScripts(); 039 Map<JetScript, WritableScope> getScriptScopes(); 040 041 void setTopDownAnalysisParameters(TopDownAnalysisParameters parameters); 042 043 boolean completeAnalysisNeeded(@NotNull PsiElement element); 044}