public class NormalizingJsopHandler extends DefaultJsopHandler
NormalizingJsopHandler...| Constructor and Description |
|---|
NormalizingJsopHandler() |
| Modifier and Type | Method and Description |
|---|---|
String |
getDiff() |
void |
nodeAdded(String parentPath,
String name)
Event: A node has been added.
|
void |
nodeCopied(String rootPath,
String oldPath,
String newPath)
Event: A node was copied.
|
void |
nodeMoved(String rootPath,
String oldPath,
String newPath)
Event: A node was moved.
|
void |
nodeRemoved(String parentPath,
String name)
Event: A node was removed.
|
void |
propertySet(String path,
String key,
Object value,
String rawValue)
Event: A property was set.
|
public String getDiff()
public void nodeAdded(String parentPath, String name)
DefaultJsopHandlernodeAdded in class DefaultJsopHandlerparentPath - The path where the node was added to.name - The name of the added node.public void nodeCopied(String rootPath, String oldPath, String newPath)
DefaultJsopHandlernodeCopied in class DefaultJsopHandlerrootPath - The root path where the copy took place.oldPath - The old path of the node (relative to the root path).newPath - The new path of the node (relative to the root path).public void nodeMoved(String rootPath, String oldPath, String newPath)
DefaultJsopHandlernodeMoved in class DefaultJsopHandlerrootPath - The root path where the copy took place.oldPath - The old path of the node (relative to the root path).newPath - The new path of the node (relative to the root path).public void nodeRemoved(String parentPath, String name)
DefaultJsopHandlernodeRemoved in class DefaultJsopHandlerparentPath - The path where the node was removed from.name - The name of the node.public void propertySet(String path, String key, Object value, String rawValue)
DefaultJsopHandlerpropertySet in class DefaultJsopHandlerpath - The path of the node where the property was set.key - The key of the property.value - The value of the property.rawValue - The raw value of the property.Copyright © 2012-2013 The Apache Software Foundation. All Rights Reserved.