Lines Matching refs:node

147     public boolean isMBeanNode(DefaultMutableTreeNode node) {
148 Object userObject = node.getUserObject();
157 public synchronized void displayNode(DefaultMutableTreeNode node) {
160 if (node == null) {
163 currentNode = node;
164 Object userObject = node.getUserObject();
169 displayMBeanNode(node);
175 displayMBeanAttributesNode(node);
178 displayMBeanOperationsNode(node);
181 displayMBeanNotificationsNode(node);
186 displayMetadataNode(node);
198 private void displayMBeanNode(final DefaultMutableTreeNode node) {
199 final XNodeInfo uo = (XNodeInfo) node.getUserObject();
215 if (!isSelectedNode(node, currentNode)) {
243 private void displayMetadataNode(final DefaultMutableTreeNode node) {
244 final XNodeInfo uo = (XNodeInfo) node.getUserObject();
265 if (!isSelectedNode(node, currentNode)) {
356 private void displayMBeanAttributesNode(final DefaultMutableTreeNode node) {
357 final XNodeInfo uo = (XNodeInfo) node.getUserObject();
379 if (!isSelectedNode(node, currentNode)) {
414 private void displayMBeanOperationsNode(final DefaultMutableTreeNode node) {
415 final XNodeInfo uo = (XNodeInfo) node.getUserObject();
431 if (!isSelectedNode(node, currentNode)) {
464 private void displayMBeanNotificationsNode(DefaultMutableTreeNode node) {
465 final XNodeInfo uo = (XNodeInfo) node.getUserObject();
578 * Update notification node label in MBean tree: "Notifications[received]".
592 * Update notification node label in MBean tree: "Notifications".
601 * Update notification node label in MBean tree: "Notifications[0]".
610 * Update the label of the supplied MBean tree node.
614 DefaultMutableTreeNode node, String label) {
617 XNodeInfo oldUserObject = (XNodeInfo) node.getUserObject();
621 node.setUserObject(newUserObject);
624 model.nodeChanged(node);
640 // registered so add "[0]" at the end of the node label.
647 // registered so don't add "[0]" at the end of the node label.