Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
InitialisationEvent.java
1 
16 package net.squiz.matrix.core;
17 
18 import java.util.EventObject;
19 import net.squiz.matrix.matrixtree.MatrixTreeNode;
20 
21 public class InitialisationEvent extends EventObject {
22 
23  private MatrixTreeNode root;
24 
25  public InitialisationEvent(Object source, MatrixTreeNode root) {
26  super(source);
27  this.root = root;
28  }
29 
30  public MatrixTreeNode getRootNode() {
31  return root;
32  }
33 }