Package org.eclipse.lsp4j
Class CreateFilesParams
- java.lang.Object
-
- org.eclipse.lsp4j.CreateFilesParams
-
public class CreateFilesParams extends java.lang.ObjectThe parameters sent in notifications/requests for user-initiated creation of files.Since 3.16.0
-
-
Constructor Summary
Constructors Constructor Description CreateFilesParams()CreateFilesParams(java.util.List<FileCreate> files)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.util.List<FileCreate>getFiles()An array of all files/folders created in this operation.inthashCode()voidsetFiles(java.util.List<FileCreate> files)An array of all files/folders created in this operation.java.lang.StringtoString()
-
-
-
Constructor Detail
-
CreateFilesParams
public CreateFilesParams()
-
CreateFilesParams
public CreateFilesParams(java.util.List<FileCreate> files)
-
-
Method Detail
-
getFiles
public java.util.List<FileCreate> getFiles()
An array of all files/folders created in this operation.
-
setFiles
public void setFiles(java.util.List<FileCreate> files)
An array of all files/folders created in this operation.
-
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
-
-