1 11 package org.eclipse.ui.internal.cheatsheets.data; 12 13 public class Intro { 14 private String contextId; 15 private String href; 16 private String description; 17 18 21 public Intro() { 22 super(); 23 } 24 25 public Intro(String description, String href, String contextId) { 26 super(); 27 this.description = description; 28 this.href = href; 29 this.contextId = contextId; 30 } 31 32 36 public String getContextId() { 37 return contextId; 38 } 39 40 44 public String getHref() { 45 return href; 46 } 47 48 52 public String getDescription() { 53 return description; 54 } 55 56 60 public void setContextId(String contextId) { 61 this.contextId = contextId; 62 } 63 64 68 public void setHref(String helpLink) { 69 this.href = helpLink; 70 } 71 72 76 public void setDescription(String description) { 77 this.description = description; 78 } 79 } 80 | Popular Tags |