Package org.eclipse.dltk.internal.core.search.matching

Examples of org.eclipse.dltk.internal.core.search.matching.TypeReferencePattern


      pattern = orPattern.getPatterns()[0];
    }
   
    switch (pattern.kind) {
    case IIndexConstants.TYPE_REF_PATTERN: {
      TypeReferencePattern typeRefPattern = (TypeReferencePattern) pattern;
      char[] simpleName = typeRefPattern.simpleName;
      char[] qualification = readInternalField(typeRefPattern, "qualification", null);
      return new DeeNameNodeMatcher(deeMatchLocator, pattern, false, simpleName, qualification);
    }
    case IIndexConstants.TYPE_DECL_PATTERN: {
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.internal.core.search.matching.TypeReferencePattern

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.