Package fr.adrienbrault.idea.symfony2plugin.dic

Examples of fr.adrienbrault.idea.symfony2plugin.dic.ServiceStringLookupElement


        if(this.toggleService.isSelected()) {
            Map<String,String> map = ServiceXmlParserFactory.getInstance(this.project, XmlServiceParser.class).getServiceMap().getMap();
            for( Map.Entry<String, String> entry: map.entrySet() ) {
                if(entry.getKey().toLowerCase().contains(filter)) {
                    items.add(new ServiceStringLookupElement(entry.getKey(), entry.getValue()));
                }
            }
        }

        if(this.toggleRoute.isSelected()) {
View Full Code Here

TOP

Related Classes of fr.adrienbrault.idea.symfony2plugin.dic.ServiceStringLookupElement

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.