package com.jqyd.app; public class TableCell { static public final int STRING = 0; static public final int IMAGE = 1; public Object value; public int width; public int height; public int type; public float textsize; public TableCell(Object value, int width, int height, int type) { this.value = value; this.width = width; this.height = height; this.type = type; } public TableCell(Object value, int width, int height, int type, float textsize) { super(); this.value = value; this.width = width; this.height = height; this.type = type; this.textsize = textsize; } }