Uses of Interface
org.sonar.python.index.Descriptor
-
Packages that use Descriptor Package Description org.sonar.python.index org.sonar.python.semantic -
-
Uses of Descriptor in org.sonar.python.index
Classes in org.sonar.python.index that implement Descriptor Modifier and Type Class Description classAmbiguousDescriptorclassClassDescriptorclassFunctionDescriptorclassVariableDescriptorMethods in org.sonar.python.index that return Descriptor Modifier and Type Method Description static DescriptorDescriptorUtils. descriptor(Symbol symbol)Methods in org.sonar.python.index that return types with arguments of type Descriptor Modifier and Type Method Description Set<Descriptor>AmbiguousDescriptor. alternatives()static Set<Descriptor>DescriptorsToProtobuf. fromProtobuf(DescriptorsProtos.ModuleDescriptor moduleDescriptorProto)Collection<Descriptor>ClassDescriptor. members()Methods in org.sonar.python.index with parameters of type Descriptor Modifier and Type Method Description static AmbiguousDescriptorAmbiguousDescriptor. create(Descriptor... descriptors)static SymbolDescriptorUtils. symbolFromDescriptor(Descriptor descriptor, ProjectLevelSymbolTable projectLevelSymbolTable, String localSymbolName, Map<Descriptor,Symbol> createdSymbolsByDescriptor, Map<String,Symbol> createdSymbolsByFqn)Method parameters in org.sonar.python.index with type arguments of type Descriptor Modifier and Type Method Description static AmbiguousDescriptorAmbiguousDescriptor. create(Set<Descriptor> descriptors)static SymbolDescriptorUtils. symbolFromDescriptor(Descriptor descriptor, ProjectLevelSymbolTable projectLevelSymbolTable, String localSymbolName, Map<Descriptor,Symbol> createdSymbolsByDescriptor, Map<String,Symbol> createdSymbolsByFqn)static DescriptorsProtos.ModuleDescriptorDescriptorsToProtobuf. toProtobufModuleDescriptor(Set<Descriptor> descriptors)ClassDescriptor.ClassDescriptorBuilderClassDescriptor.ClassDescriptorBuilder. withMembers(Set<Descriptor> members)Constructor parameters in org.sonar.python.index with type arguments of type Descriptor Constructor Description AmbiguousDescriptor(String name, String fullyQualifiedName, Set<Descriptor> descriptors)ClassDescriptor(String name, String fullyQualifiedName, Collection<String> superClasses, Set<Descriptor> members, boolean hasDecorators, LocationInFile definitionLocation, boolean hasSuperClassWithoutDescriptor, boolean hasMetaClass, String metaclassFQN, boolean supportsGenerics) -
Uses of Descriptor in org.sonar.python.semantic
Methods in org.sonar.python.semantic that return types with arguments of type Descriptor Modifier and Type Method Description Set<Descriptor>ProjectLevelSymbolTable. descriptorsForModule(String moduleName)Method parameters in org.sonar.python.semantic with type arguments of type Descriptor Modifier and Type Method Description SymbolProjectLevelSymbolTable. getSymbol(String fullyQualifiedName, String localSymbolName, Map<Descriptor,Symbol> createdSymbolsByDescriptor, Map<String,Symbol> createdSymbolsByFqn)voidProjectLevelSymbolTable. insertEntry(String moduleName, Set<Descriptor> descriptors)
-