Package ch.qos.logback.core.joran.spi

Examples of ch.qos.logback.core.joran.spi.ElementPath


    super(key, value, parentPropertyMap);
  }
 
  @Override
  protected ElementPath initialElementPath() {
    return new ElementPath("configuration");
  }
View Full Code Here


  public void startElement(String namespaceURI, String localName, String qName,
      Attributes atts) {

    String tagName = getTagName(localName, qName);
    globalElementPath.push(tagName);
    ElementPath current = globalElementPath.duplicate();
    saxEventList.add(new StartEvent(current, namespaceURI, localName, qName,
        atts, getLocator()));
  }
View Full Code Here

  private void addStartElement(XMLEvent xmlEvent) {
    StartElement se = xmlEvent.asStartElement();
    String tagName = se.getName().getLocalPart();
    globalElementPath.push(tagName);
    ElementPath current = globalElementPath.duplicate();
    StartEvent startEvent = new StartEvent(current, tagName, se.getAttributes(), se.getLocation());
    eventList.add(startEvent);
  }
View Full Code Here

    super(key, value, parentPropertyMap);
  }

  @Override
  protected ElementPath initialElementPath() {
    return new ElementPath("configuration");
  }
View Full Code Here

TOP

Related Classes of ch.qos.logback.core.joran.spi.ElementPath

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.