IDEA-123587 DevKit: get rid of "Collection Child xxx" tooltips on tags in plugin.xml

This commit is contained in:
Yann Cébron
2015-11-17 11:17:16 +01:00
parent cde29bdae2
commit 99ea458274
3 changed files with 6 additions and 0 deletions
@@ -15,6 +15,7 @@
*/
package com.intellij.util.xml.impl;
import com.intellij.ide.presentation.Presentation;
import com.intellij.util.ArrayUtil;
import com.intellij.util.ReflectionUtil;
import com.intellij.util.xml.*;
@@ -30,6 +31,7 @@ import java.util.List;
/**
* @author peter
*/
@Presentation(typeName = "Attribute")
public class AttributeChildDescriptionImpl extends DomChildDescriptionImpl implements DomAttributeChildDescription<Void> {
private final JavaMethod myGetterMethod;
@@ -16,6 +16,7 @@
package com.intellij.xml.impl.dom;
import com.intellij.codeInsight.daemon.impl.analysis.XmlHighlightingAwareElementDescriptor;
import com.intellij.ide.presentation.Presentation;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.Key;
import com.intellij.openapi.util.text.StringUtil;
@@ -91,6 +92,7 @@ public class DomElementXmlDescriptor extends AbstractDomChildrenDescriptor imple
return false;
}
@Presentation(typeName = "Root tag")
private static class MyRootDomChildrenDescription implements DomChildrenDescription {
private final DomElement myDomElement;
@@ -15,6 +15,7 @@
*/
package com.intellij.util.xml.reflect;
import com.intellij.ide.presentation.Presentation;
import com.intellij.util.xml.DomElement;
import com.intellij.util.xml.JavaMethod;
import org.jetbrains.annotations.NotNull;
@@ -25,6 +26,7 @@ import java.lang.reflect.Type;
/**
* @author peter
*/
@Presentation(typeName = "XML tag")
public interface DomCollectionChildDescription extends DomChildrenDescription {
DomCollectionChildDescription[] EMPTY_ARRAY = new DomCollectionChildDescription[0];