Package com.yiistorm.completition.lookups

Examples of com.yiistorm.completition.lookups.ConfigComponentLookupElement


        ConfigParser config = YiiStormProjectComponent.getInstance(project).getYiiConfig();
        if (config != null) {
            HashMap<String, String> classMap = config.getComponentsClassMap();
            if (classMap != null && classMap.size() > 0) {
                for (String componentName : classMap.keySet()) {
                    completionResultSet.addElement(new ConfigComponentLookupElement(componentName, project));
                }
            }
        }

    }
View Full Code Here

TOP

Related Classes of com.yiistorm.completition.lookups.ConfigComponentLookupElement

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.