Package org.eclipse.ui.activities

Examples of org.eclipse.ui.activities.NotDefinedException


        return id;
    }

    public String getName() throws NotDefinedException {
        if (!defined) {
      throw new NotDefinedException();
    }

        return name;
    }
View Full Code Here


    /* (non-Javadoc)
     * @see org.eclipse.ui.activities.ICategory#getDescription()
     */
    public String getDescription() throws NotDefinedException {
        if (!defined) {
      throw new NotDefinedException();
    }

        return description;
    }
View Full Code Here

        return id;
    }

    public String getName() throws NotDefinedException {
        if (!defined) {
      throw new NotDefinedException();
    }

        return name;
    }
View Full Code Here

    /* (non-Javadoc)
     * @see org.eclipse.ui.activities.IActivity#getDescription()
     */
    public String getDescription() throws NotDefinedException {
        if (!defined) {
      throw new NotDefinedException();
    }

        return description;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.activities.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.