blob: c8c80f41c5916cca8417156efd5c74f921511ef3 [file] [log] [blame]
package com.jetbrains.python.nameResolver;
import org.jetbrains.annotations.NotNull;
/**
* Some enum value that represents one or more fully qualified names for some function
* @author Ilya.Kazakevich
*/
public interface FQNamesProvider {
/**
* @return one or more fully qualified names
*/
@NotNull
String[] getNames();
/**
* @return is name of class (true) or function (false)
*/
boolean isClass();
}