1 11 package org.eclipse.help.internal.webapp.data; 12 13 public class Topic { 14 private String label; 15 private String href; 16 17 public Topic(String label, String href) { 18 this.label = label; 19 this.href = href; 20 } 21 22 public String getLabel() { 23 return label; 24 } 25 26 public String getHref() { 27 return UrlUtil.getHelpURL(href); 28 } 29 30 } 31 | Popular Tags |