1 11 package org.eclipse.core.commands.operations; 12 13 import org.eclipse.core.runtime.Status; 14 15 23 public final class OperationStatus extends Status { 24 29 public static final int NOTHING_TO_REDO = 1; 30 31 36 public static final int NOTHING_TO_UNDO = 2; 37 38 44 public static final int OPERATION_INVALID = 3; 45 46 51 static String DEFAULT_PLUGIN_ID = "org.eclipse.core.commands"; 53 68 public OperationStatus(int severity, String pluginId, int code, String message, Throwable exception) { 69 super(severity, pluginId, code, message, exception); 70 } 71 } 72 | Popular Tags |