1 11 package org.eclipse.core.resources.mapping; 12 13 import org.eclipse.core.runtime.Assert; 14 import org.eclipse.core.runtime.Status; 15 16 30 public class ModelStatus extends Status { 31 32 private final String modelProviderId; 33 34 42 public ModelStatus(int severity, String pluginId, String modelProviderId, String message) { 43 super(severity, pluginId, 0, message, null); 44 Assert.isNotNull(modelProviderId); 45 this.modelProviderId = modelProviderId; 46 } 47 48 53 public String getModelProviderId() { 54 return modelProviderId; 55 } 56 } 57 | Popular Tags |