1 16 package org.apache.myfaces.component.html.ext; 17 18 import java.util.Collections ; 19 20 24 class _SerializableScalarDataModel 25 extends _SerializableDataModel 26 { 27 29 public _SerializableScalarDataModel(int first, int rows, Object scalar) 30 { 31 _first = first; 32 _rows = rows; 33 _rowCount = 1; 34 if (_rows <= 0) 35 { 36 _rows = _rowCount - first; 37 } 38 _list = Collections.singletonList(scalar); 39 } 40 } 41 | Popular Tags |