1 11 package org.eclipse.osgi.framework.adaptor; 12 13 16 public interface StatusException { 17 20 public static final int CODE_OK = 0x01; 21 24 public static final int CODE_INFO = 0x02; 25 28 public static final int CODE_WARNING = 0x04; 29 32 public static final int CODE_ERROR = 0x08; 33 34 38 public Object getStatus(); 39 40 44 public int getStatusCode(); 45 } 46 | Popular Tags |