Java 类com.intellij.util.xml.impl.ConvertAnnotationImpl 实例源码

项目:intellij-ce-playground    文件:DomExtensionImpl.java   
public final <T extends DomChildDescriptionImpl> T addAnnotations(T t) {
  t.setUserMap(myUserMap);
  if (myConverter != null) {
    t.addCustomAnnotation(new ConvertAnnotationImpl(myConverter, mySoft));
  }
  for (final Annotation anno : myCustomAnnos) {
    t.addCustomAnnotation(anno);
  }
  return t;
}
项目:tools-idea    文件:DomExtensionImpl.java   
public final <T extends DomChildDescriptionImpl> T addAnnotations(T t) {
  t.setUserMap(myUserMap);
  if (myConverter != null) {
    t.addCustomAnnotation(new ConvertAnnotationImpl(myConverter, mySoft));
  }
  for (final Annotation anno : myCustomAnnos) {
    t.addCustomAnnotation(anno);
  }
  return t;
}
项目:consulo-xml    文件:DomExtensionImpl.java   
public final <T extends DomChildDescriptionImpl> T addAnnotations(T t) {
  t.setUserMap(myUserMap);
  if (myConverter != null) {
    t.addCustomAnnotation(new ConvertAnnotationImpl(myConverter, mySoft));
  }
  for (final Annotation anno : myCustomAnnos) {
    t.addCustomAnnotation(anno);
  }
  return t;
}