comparison src/de/mpiwg/dwinter/fulltextIndexer/OCRutils/OCRDocument.java @ 0:dc7622afcfea default tip

initial
author dwinter
date Wed, 03 Nov 2010 12:33:16 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:dc7622afcfea
1 /* */ package de.mpiwg.dwinter.fulltextIndexer.OCRutils;
2 /* */
3 /* */ import java.util.ArrayList;
4 /* */
5 /* */ public class OCRDocument
6 /* */ {
7 /* */ public String filename;
8 /* */ public String pageDimension;
9 /* */ public ArrayList<OCRLine> OCRLines;
10 /* */
11 /* */ public OCRDocument(String filename, String pageDimension, ArrayList<OCRLine> lines)
12 /* */ {
13 /* 26 */ this.filename = filename;
14 /* 27 */ this.pageDimension = pageDimension;
15 /* 28 */ this.OCRLines = lines;
16 /* */ }
17 /* */
18 /* */ public OCRDocument() {
19 /* 32 */ this.OCRLines = new ArrayList();
20 /* */ }
21 /* */
22 /* */ public class OCRLine
23 /* */ {
24 /* */ public String lineNumber;
25 /* */ public String bbox;
26 /* */ public String content;
27 /* */
28 /* */ public OCRLine(String lineNumber, String bbox, String content)
29 /* */ {
30 /* 14 */ this.lineNumber = lineNumber;
31 /* 15 */ this.bbox = bbox;
32 /* 16 */ this.content = content;
33 /* */ }
34 /* */
35 /* */ public OCRLine()
36 /* */ {
37 /* */ }
38 /* */ }
39 /* */ }
40
41 /* Location: /private/tmp/fulltextIndexer.jar
42 * Qualified Name: de.mpiwg.dwinter.fulltextIndexer.OCRutils.OCRDocument
43 * JD-Core Version: 0.5.4
44 */