blob: d96725731ee72e1456e20e715ed5565baefe0174 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package com.artifex.mupdfdemo;
import android.graphics.RectF;
public class TextWord extends RectF {
public String w;
public TextWord() {
super();
w = new String();
}
public void Add(TextChar tc) {
super.union(tc);
w = w.concat(new String(new char[]{tc.c}));
}
}
|