DFW機場有協助入海關的中文服務人員嗎?# Living
d*e
1 楼
近日用Office Word的track change用得比较多,突然想知道它是怎么实现得。
我的想法是每个page是一个grid,每个点都有一个数据,里面包含原正文内容,修改的
内容,然后再beautiful display.
enum Change {
DELETE,
ADD,
}
class Point {
int x;
int y;
}
class Data {
Point position;
String content;
Map edit;
}
class Page {
Vector contents;
}
class Word {
Vector pages;
}
boolean dispaly(class Word) {
// render file here....
return true;
}
这个方法行不行?其它的方法?
谢谢。
我的想法是每个page是一个grid,每个点都有一个数据,里面包含原正文内容,修改的
内容,然后再beautiful display.
enum Change {
DELETE,
ADD,
}
class Point {
int x;
int y;
}
class Data {
Point position;
String content;
Map
}
class Page {
Vector contents;
}
class Word {
Vector
}
boolean dispaly(class Word) {
// render file here....
return true;
}
这个方法行不行?其它的方法?
谢谢。