1 11 package org.eclipse.help.internal.index; 12 13 public class IndexTopic implements IIndexTopic { 14 String label; 15 String href; 16 String location; 17 18 public IndexTopic(String label, String href, String location) { 19 this.label = label; 20 this.href = href; 21 this.location = location; 22 } 23 24 public String getHref() { 25 return href; 26 } 27 28 public String getLabel() { 29 return label; 30 } 31 32 public String getLocation() { 33 return location; 34 } 35 } 36 | Popular Tags |