Package tools.refinery.language.scoping
Record Class ProblemGlobalScopeProvider.LoadedImports
java.lang.Object
java.lang.Record
tools.refinery.language.scoping.ProblemGlobalScopeProvider.LoadedImports
- Enclosing class:
- ProblemGlobalScopeProvider
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedLoadedImports(List<org.eclipse.xtext.resource.ISelectable> qualifiedImports, List<org.eclipse.xtext.resource.ISelectable> implicitImports, List<org.eclipse.xtext.resource.ISelectable> explicitImports) Creates an instance of aLoadedImportsrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.List<org.eclipse.xtext.resource.ISelectable> Returns the value of theexplicitImportsrecord component.final inthashCode()Returns a hash code value for this object.List<org.eclipse.xtext.resource.ISelectable> Returns the value of theimplicitImportsrecord component.List<org.eclipse.xtext.resource.ISelectable> Returns the value of thequalifiedImportsrecord component.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details- 
LoadedImportsprotected LoadedImports(List<org.eclipse.xtext.resource.ISelectable> qualifiedImports, List<org.eclipse.xtext.resource.ISelectable> implicitImports, List<org.eclipse.xtext.resource.ISelectable> explicitImports) Creates an instance of aLoadedImportsrecord class.- Parameters:
- qualifiedImports- the value for the- qualifiedImportsrecord component
- implicitImports- the value for the- implicitImportsrecord component
- explicitImports- the value for the- explicitImportsrecord component
 
 
- 
- 
Method Details- 
toStringReturns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
- 
hashCodepublic final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
- 
equalsIndicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object).
- 
qualifiedImportsReturns the value of thequalifiedImportsrecord component.- Returns:
- the value of the qualifiedImportsrecord component
 
- 
implicitImportsReturns the value of theimplicitImportsrecord component.- Returns:
- the value of the implicitImportsrecord component
 
- 
explicitImportsReturns the value of theexplicitImportsrecord component.- Returns:
- the value of the explicitImportsrecord component
 
 
-