Package org.eclipse.jdt.internal.core

Examples of org.eclipse.jdt.internal.core.ResolvedSourceType


    }

    public void acceptSearchMatch(SearchMatch match) throws CoreException {
      Object element = match.getElement();
      if (element instanceof ResolvedSourceType) {
        ResolvedSourceType type = (ResolvedSourceType) element;
        String name = type.getElementName();
        entityName.add(name);
      }
      return;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.core.ResolvedSourceType

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.