de.christofreichardt.diagnosis.net.OueueNetTracer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tracelogger Show documentation
Show all versions of tracelogger Show documentation
A trace tool which produces clearly arranged logs by indenting the trace messages depending on the depth of the
call stack.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package de.christofreichardt.diagnosis.net;
import de.christofreichardt.diagnosis.QueueTracer;
import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathExpressionException;
import org.w3c.dom.Node;
/**
*
* @author Developer
*/
public class OueueNetTracer extends QueueTracer {
public OueueNetTracer(String name, NetTracer tracer) {
super(name, new NetTracer(name));
}
@Override
protected void readConfiguration(XPath xpath, Node node) throws XPathExpressionException, OueueNetTracer.Exception {
throw new UnsupportedOperationException("Not supported yet.");
}
}