Interface IFilePickItem
- 
- All Known Implementing Classes:
 FavoritePickItem,RecentPickItem
public interface IFilePickItem 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFullPath()LonggetLastUse()StringgetTitle()voidsetFullPath(String fullPath)voidsetLastUse(Long lastUse)voidsetTitle(String title)com.google.gwt.json.client.JSONObjecttoJson() 
 - 
 
- 
- 
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()
 
 - 
 
 -