Example #1
0
 public abstract void Remove(FileComponent fc);
Example #2
0
 public override void Remove(FileComponent fc)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public abstract void Add(FileComponent fc);
 public override void Add(FileComponent fc)
 {
     children.Add(fc);
 }
 public override void Remove(FileComponent fc)
 {
     children.Remove(fc);
 }
Example #6
0
 public abstract void Remove(FileComponent fc);
Example #7
0
 public abstract void Add(FileComponent fc);
Example #8
0
 public override void Remove(FileComponent fc)
 {
     throw new NotImplementedException();
 }
Example #9
0
 public override void Remove(FileComponent fc)
 {
     children.Remove(fc);
 }
Example #10
0
 public override void Add(FileComponent fc)
 {
     children.Add(fc);
 }