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

org.openestate.io.filemaker.xml.result.Adapter1 Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.4
Show newest version

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));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy