/**@class android.os.DropBoxManager.Entry
 implements android.os.Parcelable

 implements java.io.Closeable

@extends java.lang.Object

 A single entry retrieved from the drop box.
 This may include a reference to a stream, so you must call
 {@link #close}() when you are done using it.
*/
var Entry = {

/***/
CREATOR : "null",
/**Close the input stream associated with this entry.
*/
close : function(  ) {},

/**
@return {String} the tag originally attached to the entry.
*/
getTag : function(  ) {},

/**
@return {Number} time when the entry was originally created.
*/
getTimeMillis : function(  ) {},

/**
@return {Number} flags describing the content returned by {@link #getInputStream()}.
*/
getFlags : function(  ) {},

/**
@param {Number} maxBytes of string to return (will truncate at this length).
@return {String} the uncompressed text contents of the entry, null if the entry is not text.
*/
getText : function(  ) {},

/**
@return {Object {java.io.InputStream}} the uncompressed contents of the entry, or null if the contents were lost
*/
getInputStream : function(  ) {},

/**
*/
describeContents : function(  ) {},

/**
*/
writeToParcel : function(  ) {},


};