Package com.intellij.util.xmlb.annotations

Examples of com.intellij.util.xmlb.annotations.Tag


  private final Accessor myAccessor;
  private final String myTagName;

  public JDOMElementBinding(final Accessor accessor) {
    myAccessor = accessor;
    final Tag tag = XmlSerializerImpl.findAnnotation(myAccessor.getAnnotations(), Tag.class);
    assert tag != null : "jdom.Element property without @Tag annotation: " + accessor;
    myTagName = tag.value();
  }
View Full Code Here


  private Accessor myAccessor;
  private String myTagName;

  public JDOMElementBinding(final Accessor accessor) {
    myAccessor = accessor;
    final Tag tag = XmlSerializerImpl.findAnnotation(myAccessor.getAnnotations(), Tag.class);
    assert tag != null : "jdom.Element property without @Tag annotation: " + accessor;
    myTagName = tag.value();
  }
View Full Code Here

TOP

Related Classes of com.intellij.util.xmlb.annotations.Tag

Copyright © 2018 www.massapicom. 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.