1 11 12 package org.eclipse.jdt.internal.ui.javaeditor; 13 14 import org.eclipse.jface.action.Action; 15 16 21 class RemoveOccurrenceAnnotations extends Action { 22 23 24 private final JavaEditor fEditor; 25 26 31 RemoveOccurrenceAnnotations(JavaEditor editor) { 32 fEditor = editor; 33 } 34 35 38 public void run() { 39 fEditor.removeOccurrenceAnnotations(); 40 } 41 } 42 | Popular Tags |