Package org.eclipse.jdt.core.search

Examples of org.eclipse.jdt.core.search.TypeNameMatch


            return;
        for (Iterator< ? > iter = selection.iterator(); iter.hasNext();) {
            Object obj = iter.next();
            if (obj instanceof TypeNameMatch) {
                accessedHistoryItem(obj);
                TypeNameMatch type = (TypeNameMatch) obj;
                String qualifiedName = getNameWithTypeParameters(type.getType());
                String message;

                if (fTypeWizardPage.addSuperInterface(qualifiedName)) {
                    message = Messages.format(NewWizardMessages.SuperInterfaceSelectionDialog_interfaceadded_info, BasicElementLabels.getJavaElementName(qualifiedName));
                } else {
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.core.search.TypeNameMatch

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.