Package org.netbeans.modules.csl.api

Examples of org.netbeans.modules.csl.api.ElementHandle


     *
     * @return a binary name of class or null if no class with the main method is selected
     */   
    @SuppressWarnings("unchecked")
    public String getSelectedMainClass () {
        ElementHandle te = null;
        if (isValidMainClassName (jMainClassList.getSelectedValue ())) {
            te = (ElementHandle)jMainClassList.getSelectedValue();
        }
        if (te instanceof AstDfn) {
            return ((AstDfn) te).qualifiedName();
        }
        return te == null ? null : te.getName();
    }
View Full Code Here

TOP

Related Classes of org.netbeans.modules.csl.api.ElementHandle

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.