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
017 package org.jetbrains.jet.lang.resolve.java;
018
019 /*
020 * This class indicates whether we should look into kotlin sources when searching for descriptors in JavaDescriptorResolver.
021 * This is a hack because it should be done via correct scopes.
022 * Order in which we attempt to resolve descriptors is also should be taken care of. (though it is correct for the most part now)
023 * */
024 public enum DescriptorSearchRule {
025 //Return immediately if you found descriptor in kotlin sources, if not continue
026 INCLUDE_KOTLIN_SOURCES,
027 //Do not try to find descriptors in kotlin sources.
028 //This flag is mostly used when resolving descriptors from binaries or java descriptors.
029 //It will not prevent from looking into java sources which is often desirable behaviour.
030 //It is not correct because sometimes class from sources can override class from binary since it comes earlier in classpath
031 //and for a thousand more reasons.
032 IGNORE_KOTLIN_SOURCES
033 }