public class DefaultJsopHandler extends Object
Each event callback has an empty default implementation. An implementor may choose the appropriate methods to overwrite.
| Constructor and Description |
|---|
DefaultJsopHandler() |
| Modifier and Type | Method and Description |
|---|---|
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 void nodeAdded(String parentPath, String name)
parentPath - The path where the node was added to.name - The name of the added node.public void nodeCopied(String rootPath, String oldPath, String newPath)
rootPath - 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)
rootPath - 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)
parentPath - The path where the node was removed from.name - The name of the node.Copyright © 2012-2013 The Apache Software Foundation. All Rights Reserved.