Package org.eclipse.core.runtime

Examples of org.eclipse.core.runtime.InvalidRegistryObjectException


    Object[] args= { fElement.getContributor().getName(), id, extensionPointId };
    String blame= MessageFormat.format(RulerColumnMessages.ExtensionPointHelper_invalid_contribution_msg, args);

    IStatus status= new Status(IStatus.WARNING, TextEditorPlugin.PLUGIN_ID, IStatus.OK, blame + message, null);
    fLog.log(status);
    throw new InvalidRegistryObjectException();
  }
View Full Code Here


        index = i;
        break;
      }
    }
    if (index == -1)
      throw new InvalidRegistryObjectException();

    // copy all array except one element at index
    int[] result = new int[children.length - 1];
    System.arraycopy(children, 0, result, 0, index);
    System.arraycopy(children, index + 1, result, index, children.length - index - 1);
View Full Code Here

    if (result != null)
      return result;
    if (fromCache)
      result = load(id, type);
    if (result == null)
      throw new InvalidRegistryObjectException();
    cache.put(id, result);
    return result;
  }
View Full Code Here

      if (actualObjects != null) {
        result = actualObjects.get(new Integer(id));
      }
    }
    if (result == null)
      throw new InvalidRegistryObjectException();
    return result;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.core.runtime.InvalidRegistryObjectException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.