Search in sources :

Example 1 with JavaFxPropertyAttributeDescriptor

use of org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxPropertyAttributeDescriptor in project intellij-community by JetBrains.

the class JavaFxColorRgbInspection method buildVisitor.

@NotNull
@Override
public PsiElementVisitor buildVisitor(@NotNull ProblemsHolder holder, boolean isOnTheFly, @NotNull LocalInspectionToolSession session) {
    if (!JavaFxFileTypeFactory.isFxml(session.getFile()))
        return PsiElementVisitor.EMPTY_VISITOR;
    return new XmlElementVisitor() {

        @Override
        public void visitXmlAttribute(XmlAttribute attribute) {
            super.visitXmlAttribute(attribute);
            final String attributeValue = attribute.getValue();
            if (attributeValue == null)
                return;
            final XmlAttributeDescriptor descriptor = attribute.getDescriptor();
            if (descriptor instanceof JavaFxPropertyAttributeDescriptor) {
                final PsiClass psiClass = ((JavaFxPropertyAttributeDescriptor) descriptor).getPsiClass();
                if (psiClass != null && JavaFxCommonNames.JAVAFX_SCENE_COLOR.equals(psiClass.getQualifiedName())) {
                    final XmlAttributeValue valueElement = attribute.getValueElement();
                    final PsiElement location = valueElement != null ? valueElement : attribute;
                    validateColorComponent(psiClass, attribute.getName(), attributeValue, location);
                }
            }
        }

        @Override
        public void visitXmlTag(XmlTag tag) {
            super.visitXmlTag(tag);
            if (tag.getSubTags().length != 0)
                return;
            final XmlElementDescriptor descriptor = tag.getDescriptor();
            if (descriptor instanceof JavaFxPropertyTagDescriptor) {
                final PsiClass psiClass = ((JavaFxPropertyTagDescriptor) descriptor).getPsiClass();
                if (psiClass != null && JavaFxCommonNames.JAVAFX_SCENE_COLOR.equals(psiClass.getQualifiedName())) {
                    final XmlTagValue valueElement = tag.getValue();
                    final XmlText[] textElements = valueElement.getTextElements();
                    final PsiElement location = textElements.length == 1 ? textElements[0] : tag;
                    validateColorComponent(psiClass, tag.getName(), valueElement.getTrimmedText(), location);
                }
            }
        }

        private void validateColorComponent(@NotNull PsiClass psiClass, @NotNull String propertyName, @NotNull String propertyValue, @NotNull PsiElement location) {
            final PsiMember declaration = JavaFxPsiUtil.getWritableProperties(psiClass).get(propertyName);
            final String boxedQName = JavaFxPsiUtil.getBoxedPropertyType(psiClass, declaration);
            if (CommonClassNames.JAVA_LANG_FLOAT.equals(boxedQName) || CommonClassNames.JAVA_LANG_DOUBLE.equals(boxedQName)) {
                try {
                    double value = Double.parseDouble(propertyValue);
                    if (value < 0.0 || value > 1.0) {
                        holder.registerProblem(location, "Color component has to be a number between 0.0 and 1.0, inclusively");
                    }
                } catch (NumberFormatException ignored) {
                }
            }
        }
    };
}
Also used : NotNull(org.jetbrains.annotations.NotNull) XmlAttributeDescriptor(com.intellij.xml.XmlAttributeDescriptor) JavaFxPropertyTagDescriptor(org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxPropertyTagDescriptor) XmlElementDescriptor(com.intellij.xml.XmlElementDescriptor) JavaFxPropertyAttributeDescriptor(org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxPropertyAttributeDescriptor) NotNull(org.jetbrains.annotations.NotNull)

Example 2 with JavaFxPropertyAttributeDescriptor

use of org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxPropertyAttributeDescriptor in project intellij-community by JetBrains.

the class JavaFxRedundantPropertyValueInspection method buildVisitor.

@NotNull
@Override
public PsiElementVisitor buildVisitor(@NotNull ProblemsHolder holder, boolean isOnTheFly, @NotNull LocalInspectionToolSession session) {
    if (!JavaFxFileTypeFactory.isFxml(session.getFile()))
        return PsiElementVisitor.EMPTY_VISITOR;
    return new XmlElementVisitor() {

        @Override
        public void visitXmlAttribute(XmlAttribute attribute) {
            super.visitXmlAttribute(attribute);
            final XmlAttributeDescriptor descriptor = attribute.getDescriptor();
            if (!(descriptor instanceof JavaFxPropertyAttributeDescriptor))
                return;
            final String attributeName = attribute.getName();
            final String attributeValue = attribute.getValue();
            if (attributeValue == null || attributeValue.startsWith("$") || attributeValue.startsWith("#") || attributeValue.startsWith("%") || FxmlConstants.FX_ID.equals(attributeName) || FxmlConstants.FX_VALUE.equals(attributeName) || FxmlConstants.FX_CONSTANT.equals(attributeName) || FxmlConstants.FX_CONTROLLER.equals(attributeName)) {
                return;
            }
            final PsiClass tagClass = JavaFxPsiUtil.getTagClass(attribute.getParent());
            final String defaultValue = getDefaultValue(attributeName, tagClass);
            if (defaultValue == null)
                return;
            if (isEqualValue(tagClass, attributeValue, defaultValue, descriptor.getDeclaration())) {
                holder.registerProblem(attribute, "Attribute is redundant because it contains default value", ProblemHighlightType.GENERIC_ERROR_OR_WARNING, new RemoveAttributeIntentionFix(attributeName, attribute));
            }
        }

        @Override
        public void visitXmlTag(XmlTag tag) {
            super.visitXmlTag(tag);
            final XmlElementDescriptor descriptor = tag.getDescriptor();
            if (!(descriptor instanceof JavaFxPropertyTagDescriptor)) {
                return;
            }
            if (tag.getSubTags().length != 0)
                return;
            final String tagText = tag.getValue().getTrimmedText();
            if (tagText.startsWith("$") || tagText.startsWith("#") || tagText.startsWith("%")) {
                return;
            }
            final XmlTag parentTag = tag.getParentTag();
            if (parentTag == null)
                return;
            final PsiClass tagClass = JavaFxPsiUtil.getTagClass(parentTag);
            final String defaultValue = getDefaultValue(tag.getName(), tagClass);
            if (defaultValue == null)
                return;
            if (isEqualValue(tagClass, tagText, defaultValue, descriptor.getDeclaration())) {
                holder.registerProblem(tag, "Tag is redundant because it contains default value", ProblemHighlightType.GENERIC_ERROR_OR_WARNING, new RemoveTagIntentionFix(tag.getName(), tag));
            }
        }
    };
}
Also used : XmlAttribute(com.intellij.psi.xml.XmlAttribute) XmlAttributeDescriptor(com.intellij.xml.XmlAttributeDescriptor) JavaFxPropertyTagDescriptor(org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxPropertyTagDescriptor) RemoveAttributeIntentionFix(com.intellij.codeInsight.daemon.impl.analysis.RemoveAttributeIntentionFix) XmlElementDescriptor(com.intellij.xml.XmlElementDescriptor) JavaFxPropertyAttributeDescriptor(org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxPropertyAttributeDescriptor) RemoveTagIntentionFix(com.intellij.codeInsight.daemon.impl.analysis.RemoveTagIntentionFix) XmlTag(com.intellij.psi.xml.XmlTag) NotNull(org.jetbrains.annotations.NotNull)

Example 3 with JavaFxPropertyAttributeDescriptor

use of org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxPropertyAttributeDescriptor in project intellij-community by JetBrains.

the class JavaFxExpandAttributeIntention method isAvailable.

@Override
public boolean isAvailable(@NotNull Project project, Editor editor, @NotNull PsiElement element) {
    if (element instanceof XmlToken && ((XmlToken) element).getTokenType() == XmlTokenType.XML_NAME) {
        final PsiElement parent = element.getParent();
        if (parent instanceof XmlAttribute) {
            final XmlAttributeDescriptor descriptor = ((XmlAttribute) parent).getDescriptor();
            if (descriptor instanceof JavaFxPropertyAttributeDescriptor && !(descriptor instanceof JavaFxBuiltInAttributeDescriptor)) {
                PsiType tagType = null;
                final PsiElement declaration = descriptor.getDeclaration();
                if (declaration instanceof PsiMember) {
                    tagType = PropertyUtil.getPropertyType((PsiMember) declaration);
                }
                PsiClass tagClass = PsiUtil.resolveClassInType(tagType instanceof PsiPrimitiveType ? ((PsiPrimitiveType) tagType).getBoxedType(parent) : tagType);
                if ((tagClass != null && JavaFxPsiUtil.isAbleToInstantiate(tagClass)) || descriptor instanceof JavaFxStaticSetterAttributeDescriptor) {
                    setText("Expand '" + ((XmlAttribute) parent).getName() + "' to tag");
                    return true;
                }
            }
        }
    }
    return false;
}
Also used : JavaFxStaticSetterAttributeDescriptor(org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxStaticSetterAttributeDescriptor) XmlAttributeDescriptor(com.intellij.xml.XmlAttributeDescriptor) JavaFxBuiltInAttributeDescriptor(org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxBuiltInAttributeDescriptor) JavaFxPropertyAttributeDescriptor(org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxPropertyAttributeDescriptor)

Example 4 with JavaFxPropertyAttributeDescriptor

use of org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxPropertyAttributeDescriptor in project intellij-community by JetBrains.

the class JavaFxColorReferenceProvider method getReferencesByElement.

@NotNull
@Override
public PsiReference[] getReferencesByElement(@NotNull PsiElement element, @NotNull ProcessingContext context) {
    final XmlAttributeValue attributeValue = (XmlAttributeValue) element;
    final PsiElement parent = attributeValue.getParent();
    if (parent instanceof XmlAttribute) {
        final XmlAttributeDescriptor descriptor = ((XmlAttribute) parent).getDescriptor();
        if (descriptor instanceof JavaFxPropertyAttributeDescriptor) {
            final PsiElement declaration = descriptor.getDeclaration();
            final PsiClassType propertyClassType = JavaFxPsiUtil.getPropertyClassType(declaration);
            if (propertyClassType != null && InheritanceUtil.isInheritor(propertyClassType, JavaFxCommonNames.JAVAFX_SCENE_PAINT)) {
                return new PsiReference[] { new JavaFxColorReference(attributeValue) };
            }
        }
    }
    return PsiReference.EMPTY_ARRAY;
}
Also used : XmlAttribute(com.intellij.psi.xml.XmlAttribute) XmlAttributeDescriptor(com.intellij.xml.XmlAttributeDescriptor) XmlAttributeValue(com.intellij.psi.xml.XmlAttributeValue) JavaFxPropertyAttributeDescriptor(org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxPropertyAttributeDescriptor) NotNull(org.jetbrains.annotations.NotNull)

Aggregations

XmlAttributeDescriptor (com.intellij.xml.XmlAttributeDescriptor)4 JavaFxPropertyAttributeDescriptor (org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxPropertyAttributeDescriptor)4 NotNull (org.jetbrains.annotations.NotNull)3 XmlAttribute (com.intellij.psi.xml.XmlAttribute)2 XmlElementDescriptor (com.intellij.xml.XmlElementDescriptor)2 JavaFxPropertyTagDescriptor (org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxPropertyTagDescriptor)2 RemoveAttributeIntentionFix (com.intellij.codeInsight.daemon.impl.analysis.RemoveAttributeIntentionFix)1 RemoveTagIntentionFix (com.intellij.codeInsight.daemon.impl.analysis.RemoveTagIntentionFix)1 XmlAttributeValue (com.intellij.psi.xml.XmlAttributeValue)1 XmlTag (com.intellij.psi.xml.XmlTag)1 JavaFxBuiltInAttributeDescriptor (org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxBuiltInAttributeDescriptor)1 JavaFxStaticSetterAttributeDescriptor (org.jetbrains.plugins.javaFX.fxml.descriptors.JavaFxStaticSetterAttributeDescriptor)1