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

net.yapbam.currency.CurrencyHandler Maven / Gradle / Ivy

There is a newer version: 1.9.1
Show newest version
package net.yapbam.currency;

import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

public abstract class CurrencyHandler extends DefaultHandler {
	private CurrencyData data;
	
	protected CurrencyHandler() {
	}
	
	@Override
	public void startDocument() throws SAXException {
		this.data = new CurrencyData();
	}

	@Override
	public void endDocument() throws SAXException {
		this.data.lock();
	}
 
	public CurrencyData getData() {
		return this.data;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy