Package org.eclipse.lsp4j
Class DidChangeWatchedFilesParams
- java.lang.Object
-
- org.eclipse.lsp4j.DidChangeWatchedFilesParams
-
public class DidChangeWatchedFilesParams extends java.lang.Object
The watched files notification is sent from the client to the server when the client detects changes to file watched by the language client.
-
-
Constructor Summary
Constructors Constructor Description DidChangeWatchedFilesParams()
DidChangeWatchedFilesParams(java.util.List<FileEvent> changes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.util.List<FileEvent>
getChanges()
The actual file events.int
hashCode()
void
setChanges(java.util.List<FileEvent> changes)
The actual file events.java.lang.String
toString()
-
-
-
Constructor Detail
-
DidChangeWatchedFilesParams
public DidChangeWatchedFilesParams()
-
DidChangeWatchedFilesParams
public DidChangeWatchedFilesParams(java.util.List<FileEvent> changes)
-
-
Method Detail
-
getChanges
public java.util.List<FileEvent> getChanges()
The actual file events.
-
setChanges
public void setChanges(java.util.List<FileEvent> changes)
The actual file events.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-