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

net.yapbam.data.xml.DelegateHandler Maven / Gradle / Ivy

The newest version!
package net.yapbam.data.xml;

import org.xml.sax.helpers.DefaultHandler;

public abstract class DelegateHandler extends DefaultHandler {
	protected abstract String getRootTag();
	protected boolean isEndTag(String tag) {
		return getRootTag().equals(tag);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy