1 11 package org.eclipse.ui.internal.part.components.services; 12 13 import org.eclipse.core.runtime.IStatus; 14 15 31 public interface IStatusFactory { 32 40 public IStatus newError(Throwable t); 41 42 50 public IStatus newError(String message, Throwable t); 51 52 60 public IStatus newStatus(int severity, String message); 61 62 68 public IStatus newMessage(String message); 69 } 70 | Popular Tags |