Package org.eclipse.lsp4j
Class FileCreate
- java.lang.Object
-
- org.eclipse.lsp4j.FileCreate
-
public class FileCreate extends java.lang.Object
Represents information on a file/folder create.Since 3.16.0
-
-
Constructor Summary
Constructors Constructor Description FileCreate()
FileCreate(java.lang.String uri)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getUri()
A file:// URI for the location of the file/folder being created.int
hashCode()
void
setUri(java.lang.String uri)
A file:// URI for the location of the file/folder being created.java.lang.String
toString()
-
-
-
Method Detail
-
getUri
public java.lang.String getUri()
A file:// URI for the location of the file/folder being created.
-
setUri
public void setUri(java.lang.String uri)
A file:// URI for the location of the file/folder being created.
-
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
-
-