1 31 package org.pdfbox.pdfparser; 32 33 39 public class PDFXref 40 { 41 42 private long count; 43 private long start; 44 45 51 public PDFXref( long startValue, long countValue ) 52 { 53 setStart( startValue ); 54 setCount( countValue ); 55 } 56 57 62 public long getCount() 63 { 64 return count; 65 } 66 67 72 public long getStart() 73 { 74 return start; 75 } 76 77 82 private void setCount(long newCount) 83 { 84 count = newCount; 85 } 86 87 92 private void setStart(long newStart) 93 { 94 start = newStart; 95 } 96 } | Popular Tags |