Lines Matching refs:CurGroupValue

284     public void modifyCellContent(XCellRange xCellRange, Object CurGroupValue)  in modifyCellContent()  argument
290 modifyCellContent(CurGroupValue); in modifyCellContent()
303 public void modifyCellContent(Object CurGroupValue) in modifyCellContent() argument
310 if (AnyConverter.isString(CurGroupValue)) in modifyCellContent()
312 String sValue = AnyConverter.toString(CurGroupValue); in modifyCellContent()
317 if (AnyConverter.isBoolean(CurGroupValue)) in modifyCellContent()
319 dblValue = (double) AnyConverter.toInt(CurGroupValue); in modifyCellContent()
321 if (AnyConverter.isByte(CurGroupValue)) in modifyCellContent()
323 dblValue = (double) AnyConverter.toByte(CurGroupValue); in modifyCellContent()
325 else if (AnyConverter.isDouble(CurGroupValue)) in modifyCellContent()
327 dblValue = AnyConverter.toDouble(CurGroupValue); in modifyCellContent()
329 else if (AnyConverter.isFloat(CurGroupValue)) in modifyCellContent()
331 dblValue = (double) AnyConverter.toFloat(CurGroupValue); in modifyCellContent()
333 else if (AnyConverter.isInt(CurGroupValue)) in modifyCellContent()
335 dblValue = (double) AnyConverter.toInt(CurGroupValue); in modifyCellContent()
337 else if (AnyConverter.isLong(CurGroupValue)) in modifyCellContent()
339 dblValue = (double) AnyConverter.toLong(CurGroupValue); in modifyCellContent()
341 else if (AnyConverter.isShort(CurGroupValue)) in modifyCellContent()
343 dblValue = (double) AnyConverter.toShort(CurGroupValue); in modifyCellContent()
359 Object CurGroupValue; in replaceValueCellofTable() local
362CurGroupValue = BlindtextCreator.adjustBlindTextlength(CurDBField.getFieldTitle(), CurDBField.getF… in replaceValueCellofTable()
366 CurGroupValue = CurDBField.getDefaultValue(); in replaceValueCellofTable()
368 modifyCellContent(CurGroupValue); in replaceValueCellofTable()