1 11 package org.eclipse.jface.fieldassist; 12 13 import org.eclipse.swt.graphics.Image; 14 15 24 public class FieldDecoration { 25 26 29 private Image image; 30 31 34 private String description; 35 36 49 public FieldDecoration(Image image, String description) { 50 this.image = image; 51 this.description = description; 52 } 53 54 61 public Image getImage() { 62 return image; 63 } 64 65 74 public void setImage(Image image) { 75 this.image = image; 76 } 77 78 85 public String getDescription() { 86 return description; 87 } 88 89 99 public void setDescription(String description) { 100 this.description = description; 101 } 102 } 103 | Popular Tags |