1 21 22 package org.armedbear.j; 23 24 public final class WebHistoryEntry 25 { 26 private final File file; 27 private int offset; 28 private final String contentType; 29 30 public WebHistoryEntry(File file, int offset, String contentType) 31 { 32 this.file = file; 33 this.offset = offset; 34 this.contentType = contentType; 35 } 36 37 public final File getFile() 38 { 39 return file; 40 } 41 42 public final int getOffset() 43 { 44 return offset; 45 } 46 47 public final void setOffset(int offset) 48 { 49 this.offset = offset; 50 } 51 52 public final String getContentType() 53 { 54 return contentType; 55 } 56 } 57 | Popular Tags |