org.openestate.io.filemaker.xml.result.Adapter1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OpenEstate-IO-Filemaker Show documentation
Show all versions of OpenEstate-IO-Filemaker Show documentation
OpenEstate-IO-Filemaker is a Java library to read and write XML formats of the real estate software FlatHunter
Pro, which is based on the Filemaker database system.
package org.openestate.io.filemaker.xml.result;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter1
extends XmlAdapter
{
public Boolean unmarshal(String value) {
return (org.openestate.io.filemaker.FilemakerUtils.parseBoolean(value));
}
public String marshal(Boolean value) {
return (org.openestate.io.filemaker.FilemakerUtils.printBoolean(value));
}
}