public void appendClassExtendsImplements(StringBuffer buf, RefClass refClass) { if (refClass.getBaseClasses().size() > 0) { HTMLComposerImpl.appendHeading( buf, InspectionsBundle.message("inspection.export.results.extends.implements")); myComposer.startList(buf); for (RefClass refBase : refClass.getBaseClasses()) { myComposer.appendListItem(buf, refBase); } myComposer.doneList(buf); } }
public void appendLibraryMethods(StringBuffer buf, RefClass refClass) { if (refClass.getLibraryMethods().size() > 0) { HTMLComposerImpl.appendHeading( buf, InspectionsBundle.message("inspection.export.results.overrides.library.methods")); myComposer.startList(buf); for (RefMethod refMethod : refClass.getLibraryMethods()) { myComposer.appendListItem(buf, refMethod); } myComposer.doneList(buf); } }
public void appendTypeReferences(StringBuffer buf, RefClass refClass) { if (refClass.getInTypeReferences().size() > 0) { HTMLComposer.appendHeading( buf, InspectionsBundle.message("inspection.export.results.type.references")); myComposer.startList(buf); for (final RefElement refElement : refClass.getInTypeReferences()) { myComposer.appendListItem(buf, refElement); } myComposer.doneList(buf); } }
public void appendDerivedMethods(StringBuffer buf, RefMethod refMethod) { if (refMethod.getDerivedMethods().size() > 0) { HTMLComposer.appendHeading( buf, InspectionsBundle.message("inspection.export.results.derived.methods")); myComposer.startList(buf); for (RefMethod refDerived : refMethod.getDerivedMethods()) { myComposer.appendListItem(buf, refDerived); } myComposer.doneList(buf); } }
public void appendSuperMethods(StringBuffer buf, RefMethod refMethod) { if (refMethod.getSuperMethods().size() > 0) { HTMLComposer.appendHeading( buf, InspectionsBundle.message("inspection.export.results.overrides.implements")); myComposer.startList(buf); for (RefMethod refSuper : refMethod.getSuperMethods()) { myComposer.appendListItem(buf, refSuper); } myComposer.doneList(buf); } }
public void appendDerivedClasses(StringBuffer buf, RefClass refClass) { if (refClass.getSubClasses().size() > 0) { if (refClass.isInterface()) { HTMLComposerImpl.appendHeading( buf, InspectionsBundle.message("inspection.export.results.extended.implemented")); } else { HTMLComposerImpl.appendHeading( buf, InspectionsBundle.message("inspection.export.results.extended")); } myComposer.startList(buf); for (RefClass refDerived : refClass.getSubClasses()) { myComposer.appendListItem(buf, refDerived); } myComposer.doneList(buf); } }
public void appendLocation(final RefEntity entity, final StringBuffer buf) { RefEntity owner = entity.getOwner(); if (owner instanceof RefPackage) { buf.append(InspectionsBundle.message("inspection.export.results.package")); buf.append(HTMLComposerImpl.NBSP).append(HTMLComposerImpl.CODE_OPENING); buf.append(RefJavaUtil.getInstance().getPackageName(entity)); buf.append(HTMLComposerImpl.CODE_CLOSING); } else if (owner instanceof RefMethod) { buf.append(InspectionsBundle.message("inspection.export.results.method")); buf.append(HTMLComposerImpl.NBSP); myComposer.appendElementReference(buf, (RefElement) owner); } else if (owner instanceof RefField) { buf.append(InspectionsBundle.message("inspection.export.results.field")); buf.append(HTMLComposerImpl.NBSP); myComposer.appendElementReference(buf, (RefElement) owner); buf.append(HTMLComposerImpl.NBSP); buf.append(InspectionsBundle.message("inspection.export.results.initializer")); } else if (owner instanceof RefClass) { appendClassOrInterface(buf, (RefClass) owner, false); buf.append(HTMLComposerImpl.NBSP); myComposer.appendElementReference(buf, (RefElement) owner); } }
public void appendReferencePresentation( RefEntity refElement, final StringBuffer buf, final boolean isPackageIncluded) { if (refElement instanceof RefImplicitConstructor) { buf.append(InspectionsBundle.message("inspection.export.results.implicit.constructor")); refElement = ((RefImplicitConstructor) refElement).getOwnerClass(); } buf.append(HTMLComposerImpl.CODE_OPENING); if (refElement instanceof RefField) { RefField field = (RefField) refElement; PsiField psiField = field.getElement(); buf.append(psiField.getType().getPresentableText()); buf.append(HTMLComposerImpl.NBSP); } else if (refElement instanceof RefMethod) { RefMethod method = (RefMethod) refElement; PsiMethod psiMethod = (PsiMethod) method.getElement(); PsiType returnType = psiMethod.getReturnType(); if (returnType != null) { buf.append(returnType.getPresentableText()); buf.append(HTMLComposerImpl.NBSP); } } buf.append(HTMLComposerImpl.A_HREF_OPENING); if (myComposer.myExporter == null) { buf.append(((RefElementImpl) refElement).getURL()); } else { buf.append(myComposer.myExporter.getURL(refElement)); } buf.append("\">"); if (refElement instanceof RefClass && ((RefClass) refElement).isAnonymous()) { buf.append(InspectionsBundle.message("inspection.reference.anonymous")); } else if (refElement instanceof RefJavaElement && ((RefJavaElement) refElement).isSyntheticJSP()) { buf.append(XmlStringUtil.escapeString(refElement.getName())); } else if (refElement instanceof RefMethod) { PsiMethod psiMethod = (PsiMethod) ((RefMethod) refElement).getElement(); buf.append(psiMethod.getName()); } else { buf.append(refElement.getName()); } buf.append(HTMLComposerImpl.A_CLOSING); if (refElement instanceof RefMethod) { PsiMethod psiMethod = (PsiMethod) ((RefMethod) refElement).getElement(); appendMethodParameters(buf, psiMethod, false); } buf.append(HTMLComposerImpl.CODE_CLOSING); if (refElement instanceof RefClass && ((RefClass) refElement).isAnonymous()) { buf.append(" "); buf.append(InspectionsBundle.message("inspection.export.results.anonymous.ref.in.owner")); buf.append(" "); myComposer.appendElementReference( buf, ((RefElement) refElement.getOwner()), isPackageIncluded); } else if (isPackageIncluded) { buf.append(" ").append(HTMLComposerImpl.CODE_OPENING).append("("); myComposer.appendQualifiedName(buf, refElement.getOwner()); // buf.append(RefUtil.getPackageName(refElement)); buf.append(")").append(HTMLComposerImpl.CODE_CLOSING); } }