Package org.eclipse.ui.commands

Examples of org.eclipse.ui.commands.NotDefinedException


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


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

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

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

   */
  public String getName() throws NotDefinedException {
    try {
      return scheme.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 scheme.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.commands.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.