FileDocCategorySizeDatePackage
UserDataNotification.javaAPI DocAndroid 1.5 API1980Wed May 06 22:41:04 BST 2009org.w3c.domts

UserDataNotification

public class UserDataNotification extends Object
This class captures the parameters to one invocation of UserDataHandler.handle.

Fields Summary
private final short
operation
private final String
key
private final Object
data
private final Node
src
private final Node
dst
Constructors Summary
public UserDataNotification(short operation, String key, Object data, Node src, Node dst)
Public constructor

    this.operation = operation;
    this.key = key;
    this.data = data;
    this.src = src;
    this.dst = dst;
  
Methods Summary
public final java.lang.ObjectgetData()
Gets value of data parameter

return
value of data parameter

    return data;
  
public final org.w3c.dom.NodegetDst()
Gets value of dst parameter

return
value of dst parameter

    return dst;
  
public final java.lang.StringgetKey()
Gets value of key parameter

return
value of key parameter

    return key;
  
public final shortgetOperation()
Get value of operation parameter

return
value of operation parameter

    return operation;
  
public final org.w3c.dom.NodegetSrc()
Gets value of src parameter

return
value of src parameter

    return src;