Examples of PomReferenceTypeElement


Examples of com.intellij.pom.java.PomReferenceTypeElement

    return visitor.visitPrimitiveType(this);
  }

  public static PomPrimitiveType getUnboxedType(PomType type) {
    if (!(type instanceof PomClassType)) return null;
    final PomReferenceTypeElement pomClass = ((PomClassType)type).getReferenceClass();
    if (!(pomClass instanceof PomClass)) return null;
    if (!PomJavaAspect.getInstance(pomClass.getModel()).getLanguageLevel().hasEnumKeywordAndAutoboxing()) return null;
    return ourQNameToUnboxed.get(((PomClass)pomClass).getQualifiedName());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.