예제 #1
0
 public void remove()
 {
     if (0 <= lastIndex && lastIndex < source.getCount())
     {
         source.removeAt(lastIndex);
     }
 }
예제 #2
0
 public void remove()
 {
     if (0 <= m_pos && m_pos < m_list.getCount())
     {
         m_list.removeAt(m_pos);
     }
 }
예제 #3
0
 public void remove()
 {
     if (0 <= pos && pos < list.getCount())
     {
         list.removeAt(pos);
     }
 }