Here you can find the source of remove(List models, int start, int count)
static void remove(List models, int start, int count)
//package com.java2s; //License from project: Apache License import java.util.List; public class Main { static void remove(List models, int start, int count) { models.subList(start, start + count).clear(); }/* w w w. j a v a2 s . com*/ }