Interface IFilePickItem
-
- All Known Implementing Classes:
FavoritePickItem
,RecentPickItem
public interface IFilePickItem
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFullPath()
Long
getLastUse()
String
getTitle()
void
setFullPath(String fullPath)
void
setLastUse(Long lastUse)
void
setTitle(String title)
com.google.gwt.json.client.JSONObject
toJson()
-
-
-
Method Detail
-
getFullPath
String getFullPath()
- Returns:
- the fullPath
-
setFullPath
void setFullPath(String fullPath)
- Parameters:
fullPath
- The full path required to access the file.
-
getTitle
String getTitle()
-
setTitle
void setTitle(String title)
- Parameters:
title
- User Friendly title to use in UI
-
getLastUse
Long getLastUse()
-
setLastUse
void setLastUse(Long lastUse)
-
toJson
com.google.gwt.json.client.JSONObject toJson()
-
-