1package com.artifex.mupdfdemo; 2 3import android.graphics.RectF; 4 5public class TextChar extends RectF { 6 public char c; 7 8 public TextChar(float x0, float y0, float x1, float y1, char _c) { 9 super(x0, y0, x1, y1); 10 c = _c; 11 } 12} 13 14