
net.yapbam.currency.CurrencyHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yapbam-commons Show documentation
Show all versions of yapbam-commons Show documentation
Commons Yapbam classes used by desktop and Android versions.
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