All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.exlp.event.impl.JDomEvent Maven / Gradle / Ivy

There is a newer version: 0.1.17
Show newest version
package net.sf.exlp.event.impl;

import net.sf.exlp.event.AbstractEvent;
import net.sf.exlp.event.LogEvent;
import net.sf.exlp.util.xml.JDomUtil;

import org.jdom.Document;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class JDomEvent extends AbstractEvent implements LogEvent
{
	final static Logger logger = LoggerFactory.getLogger(JDomEvent.class);
	
	static final long serialVersionUID=1;
	
	private Document doc;

	public JDomEvent(Document doc)
	{
		this.doc=doc;
	}
	
	public void debug()
	{
		super.debug();
		JDomUtil.debug(doc);
	}
	
	public Document getDoc() {return doc;}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy