/**@class android.content.Intent.ShortcutIconResource implements android.os.Parcelable @extends java.lang.Object Represents a shortcut/live folder icon resource. @see Intent#ACTION_CREATE_SHORTCUT @see Intent#EXTRA_SHORTCUT_ICON_RESOURCE @see android.provider.LiveFolders#ACTION_CREATE_LIVE_FOLDER @see android.provider.LiveFolders#EXTRA_LIVE_FOLDER_ICON */ var ShortcutIconResource = { /** The package name of the application containing the icon. */ packageName : "null", /** The resource name of the icon, including package, name and type. */ resourceName : "null", /** Used to read a ShortcutIconResource from a Parcel. */ CREATOR : "null", /**Creates a new ShortcutIconResource for the specified context and resource identifier. @param {Object {Context}} context The context of the application. @param {Number} resourceId The resource identifier for the icon. @return {Object {android.content.Intent.ShortcutIconResource}} A new ShortcutIconResource with the specified's context package name and icon resource identifier.`` */ fromContext : function( ) {}, /**No special parcel contents. */ describeContents : function( ) {}, /** */ writeToParcel : function( ) {}, /** */ toString : function( ) {}, };