Interface FileChangesDesc
-
public interface FileChangesDesc
Describes the modifications being made concurrently for a file
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<SingleFileChange>
getFileChanges()
returns the set of descriptions of changes made on this file by particular usersString
getFileId()
returns the file id TODO describe the structureString
getPresentablePath()
returns the presentable path of the file
-
-
-
Method Detail
-
getFileId
@NotNull String getFileId()
returns the file id TODO describe the structure- Returns:
- see above
-
getPresentablePath
@NotNull String getPresentablePath()
returns the presentable path of the file- Returns:
- see above
-
getFileChanges
@NotNull Collection<SingleFileChange> getFileChanges()
returns the set of descriptions of changes made on this file by particular users- Returns:
- see above
-
-