예제 #1
0
파일: OntoSem.cs 프로젝트: ywscr/MindMap
 public int Add(Filler value)
 {
     return(fillers.Add(value));
 }
예제 #2
0
파일: OntoSem.cs 프로젝트: ywscr/MindMap
 public int IndexOf(Filler value)
 {
     return(IndexOf(value));
 }
예제 #3
0
파일: OntoSem.cs 프로젝트: ywscr/MindMap
 public void Remove(Filler value)
 {
     fillers.Remove(value);
 }
예제 #4
0
파일: OntoSem.cs 프로젝트: ywscr/MindMap
 public bool Contains(Filler value)
 {
     return(fillers.Contains(value));
 }
예제 #5
0
파일: OntoSem.cs 프로젝트: ywscr/MindMap
 public void Insert(int index, Filler value)
 {
     fillers.Insert(index, value);
 }