Lines Matching refs:path

36          * @param path path to the base of the management object
38 GenericDmtManagementObject(String path) throws DmtException {
39 super(path, null);
104 public int createInteriorNode(String path) {
107 status = setOperationResult(mManagementObject.createInteriorNode(path));
112 public int createLeafNode(String path, DmtData value) {
113 Log.d(TAG, String.format("DmtPluginFacade.createLeafNode(%s)", path));
115 status = setOperationResult(mManagementObject.createLeafNode(path, value));
119 public int updateLeafNode(String path, DmtData newValue) {
120 Log.d(TAG, String.format("DmtPluginFacade.updateLeafNode(%s)", path));
122 status = setOperationResult(mManagementObject.updateLeafNode(path, newValue));
126 public int renameNode(String path, String newName) {
127 Log.d(TAG, String.format("DmtPluginFacade.renameNode(%s, %s)", path, newName));
129 status = setOperationResult(mManagementObject.renameNode(path, newName));
133 public int deleteNode(String path) {
134 Log.d(TAG, String.format("DmtPluginFacade.deleteNode(%s)", path));
136 status = setOperationResult(mManagementObject.deleteNode(path));
140 public DmtPluginNode getNode(String path) {
141 Log.d(TAG, String.format("DmtPluginFacade.getNode(%s)", path));
144 node = mManagementObject.getNode(path);
146 Log.e(TAG, "DmtPluginNode.getNode(): " + path + " e = " + de);
152 public Map<String, DmtPluginNode> getNodes(String path) {
153 Log.d(TAG, String.format("DmtPluginFacade.getNodes(%s)", path));
156 nodes = mManagementObject.getNodes(path);
158 Log.e(TAG, "DmtPluginNode.getNodes(): " + path + " e = " + de);
165 public DmtData getNodeValue(String path) {
166 Log.d(TAG, String.format("DmtPluginFacade.getNodeValue(%s)", path));
169 datum = mManagementObject.getNodeValue(path);
171 Log.e(TAG, "getNodeValue(): " + path + " e = " + de);