Package org.eclipse.lsp4j
Class DidChangeWorkspaceFoldersParams
- java.lang.Object
-
- org.eclipse.lsp4j.DidChangeWorkspaceFoldersParams
-
public class DidChangeWorkspaceFoldersParams extends java.lang.ObjectThe workspace/didChangeWorkspaceFolders notification is sent from the client to the server to inform the server about workspace folder configuration changes. The notification is sent by default if both ServerCapabilities/workspace/workspaceFolders and ClientCapabilities/workspace/workspaceFolders are true; or if the server has registered to receive this notification it first.Since 3.6.0
-
-
Constructor Summary
Constructors Constructor Description DidChangeWorkspaceFoldersParams()DidChangeWorkspaceFoldersParams(WorkspaceFoldersChangeEvent event)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)WorkspaceFoldersChangeEventgetEvent()The actual workspace folder change event.inthashCode()voidsetEvent(WorkspaceFoldersChangeEvent event)The actual workspace folder change event.java.lang.StringtoString()
-
-
-
Constructor Detail
-
DidChangeWorkspaceFoldersParams
public DidChangeWorkspaceFoldersParams()
-
DidChangeWorkspaceFoldersParams
public DidChangeWorkspaceFoldersParams(WorkspaceFoldersChangeEvent event)
-
-
Method Detail
-
getEvent
public WorkspaceFoldersChangeEvent getEvent()
The actual workspace folder change event.
-
setEvent
public void setEvent(WorkspaceFoldersChangeEvent event)
The actual workspace folder change event.
-
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
-
-