Package org.eclipse.lsp4j
Class DidChangeWatchedFilesParams
- java.lang.Object
-
- org.eclipse.lsp4j.DidChangeWatchedFilesParams
-
public class DidChangeWatchedFilesParams extends java.lang.ObjectThe 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 booleanequals(java.lang.Object obj)java.util.List<FileEvent>getChanges()The actual file events.inthashCode()voidsetChanges(java.util.List<FileEvent> changes)The actual file events.java.lang.StringtoString()
-
-
-
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:
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
-
-