1 11 package org.eclipse.jface.text.source; 12 13 14 20 public class VerticalRulerEvent { 21 22 private Annotation fAnnotation; 23 24 29 public VerticalRulerEvent(Annotation annotation) { 30 fAnnotation= annotation; 31 } 32 33 36 public Annotation getSelectedAnnotation() { 37 return fAnnotation; 38 } 39 40 43 public void setSelectedAnnotation(Annotation annotation) { 44 fAnnotation= annotation; 45 } 46 } 47 | Popular Tags |