Package org.eclipse.lsp4j
Class ReferenceContext
- java.lang.Object
-
- org.eclipse.lsp4j.ReferenceContext
-
public class ReferenceContext extends java.lang.ObjectThe references request is sent from the client to the server to resolve project-wide references for the symbol denoted by the given text document position.
-
-
Constructor Summary
Constructors Constructor Description ReferenceContext()ReferenceContext(boolean includeDeclaration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()booleanisIncludeDeclaration()Include the declaration of the current symbol.voidsetIncludeDeclaration(boolean includeDeclaration)Include the declaration of the current symbol.java.lang.StringtoString()
-
-
-
Method Detail
-
isIncludeDeclaration
public boolean isIncludeDeclaration()
Include the declaration of the current symbol.
-
setIncludeDeclaration
public void setIncludeDeclaration(boolean includeDeclaration)
Include the declaration of the current symbol.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-