Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7859 views
1
package com.artifex.mupdfdemo;
2
3
import android.graphics.RectF;
4
5
public class TextWord extends RectF {
6
public String w;
7
8
public TextWord() {
9
super();
10
w = new String();
11
}
12
13
public void Add(TextChar tc) {
14
super.union(tc);
15
w = w.concat(new String(new char[]{tc.c}));
16
}
17
}
18
19