1 15 16 package net.nutch.parse.msword; 17 18 25 26 class WordTextPiece 27 { 28 private int _fcStart; 29 private boolean _usesUnicode; 30 private int _length; 31 32 public WordTextPiece(int start, int length, boolean unicode) 33 { 34 _usesUnicode = unicode; 35 _length = length; 36 _fcStart = start; 37 } 38 public boolean usesUnicode() 39 { 40 return _usesUnicode; 41 } 42 43 public int getStart() 44 { 45 return _fcStart; 46 } 47 public int getLength() 48 { 49 return _length; 50 } 51 52 53 54 } 55 | Popular Tags |