Package org.eclipse.ui.contexts

Examples of org.eclipse.ui.contexts.NotDefinedException


   */
  public String getName() throws NotDefinedException {
    try {
      return wrappedContext.getName();
    } catch (final org.eclipse.core.commands.common.NotDefinedException e) {
      throw new NotDefinedException(e);
    }
  }
View Full Code Here


   */
  public String getParentId() throws NotDefinedException {
    try {
      return wrappedContext.getParentId();
    } catch (final org.eclipse.core.commands.common.NotDefinedException e) {
      throw new NotDefinedException(e);
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.contexts.NotDefinedException

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.