1 3 27 28 30 package de.qfs.apps.qflog.logview; 31 32 import de.qfs.lib.gui.TreeNotification; 33 34 41 class FilterRootNode extends FilterNode 42 { 43 46 private LogFilterTreeModel model; 47 48 50 57 public FilterRootNode (String clazz, String method, 58 LogFilterTreeModel model) 59 { 60 super (clazz, method); 61 this.model = model; 62 } 63 64 66 68 73 public void notify(TreeNotification notification) 74 { 75 notification.prependNode(this); 76 if (model != null) { 77 model.notify(notification); 78 } 79 } 80 81 } 83 | Popular Tags |