/**@class android.content.UndoOwner @extends java.lang.Object Representation of an owner of {@link android.content.UndoOperation} objects in an {@link android.content.UndoManager}. @hide */ var UndoOwner = { /**Return the unique tag name identifying this owner. This is the tag supplied to {@link android.content.UndoManager#getOwner(String, Object) android.content.UndoManager.getOwner} and is immutable. */ getTag : function( ) {}, /**Return the actual data object of the owner. This is the data object supplied to {@link android.content.UndoManager#getOwner(String, Object) android.content.UndoManager.getOwner}. An owner may have a null data if it was restored from a previously saved state with no getOwner call to associate it with its data. */ getData : function( ) {}, /** */ toString : function( ) {}, };