1 11 package org.eclipse.help.ui.internal.views; 12 13 public class HistoryEntry { 14 public static final int URL = 1; 15 public static final int PAGE = 2; 16 private int type; 17 private String target; 18 private Object data; 19 22 public HistoryEntry(int type, String target, Object data) { 23 this.type = type; 24 this.target = target; 25 this.data = data; 26 } 27 public int getType() { 28 return type; 29 } 30 public String getTarget() { 31 return target; 32 } 33 public Object getData() { 34 return data; 35 } 36 } 37 | Popular Tags |