1 16 package org.apache.myfaces.component.html.ext; 17 18 import java.util.ArrayList ; 19 20 24 class _SerializableArrayDataModel 25 extends _SerializableDataModel 26 { 27 29 public _SerializableArrayDataModel(int first, int rows, Object [] array) 30 { 31 _first = first; 32 _rows = rows; 33 _rowCount = array.length; 34 if (_rows <= 0) 35 { 36 _rows = _rowCount - first; 37 } 38 _list = new ArrayList (_rows); 39 for (int i = 0; i < _rowCount; i++) 40 { 41 _list.add(array[_first + i]); 42 } 43 } 44 } 45 | Popular Tags |