public FileSelectorInstance(FileSelectorNode n)
     : base(n)
 {
     fileFilter = null;
 }
 protected override Node newNode(Network net, int instance)
 {
     InteractorNode n = new FileSelectorNode(this, net, instance);
     return n;
 }