1 11 package org.eclipse.ui.internal.cheatsheets.views; 12 13 import org.eclipse.jface.action.Action; 14 import org.eclipse.jface.resource.ImageDescriptor; 15 16 public class NoopAction extends Action { 17 18 21 protected NoopAction() { 22 super(); 23 } 24 25 29 protected NoopAction(String text) { 30 super(text); 31 } 32 33 38 protected NoopAction(String text, ImageDescriptor image) { 39 super(text, image); 40 } 41 42 43 44 } 45 | Popular Tags |