Package org.eclipse.php.internal.core.util.collections

Examples of org.eclipse.php.internal.core.util.collections.IntHashtable.containsKey()


   *
   * @throws Exception
   */
  public static IDebugMessage getMessage(int type) throws Exception {
    IntHashtable messages = getInstance().getMessages();
    if (messages.containsKey(type)) {
      return (IDebugMessage) messages.get(type).getClass().newInstance();
    } else {
      throw new Exception("Can't find message for ID = " + type //$NON-NLS-1$
          + " in Debug messages registry!");//$NON-NLS-1$
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.