/**@class android.mtp.MtpStorageInfo @extends java.lang.Object This class encapsulates information about a storage unit on an MTP device. This corresponds to the StorageInfo Dataset described in section 5.2.2 of the MTP specification. */ var MtpStorageInfo = { /**Returns the storage ID for the storage unit. The storage ID uniquely identifies the storage unit on the MTP device. @return {Number} the storage ID */ getStorageId : function( ) {}, /**Returns the maximum storage capacity for the storage unit in bytes @return {Number} the maximum capacity */ getMaxCapacity : function( ) {}, /**Returns the amount of free space in the storage unit in bytes @return {Number} the amount of free space */ getFreeSpace : function( ) {}, /**Returns the description string for the storage unit. This is typically displayed to the user in the user interface on the MTP host. @return {String} the storage unit description */ getDescription : function( ) {}, /**Returns the volume identifier for the storage unit @return {String} the storage volume identifier */ getVolumeIdentifier : function( ) {}, };