Search in sources :

Example 1 with SurveyUnmarshaller

use of org.openforis.idm.metamodel.xml.internal.unmarshal.SurveyUnmarshaller in project collect by openforis.

the class SurveyIdmlBinder method unmarshal.

public Survey unmarshal(InputStream is, boolean includeCodeListItems) throws IdmlParseException {
    try {
        SurveyUnmarshaller unmarshaller = new SurveyUnmarshaller(this, includeCodeListItems);
        unmarshaller.parse(is, UTF_8);
        Survey survey = unmarshaller.getSurvey();
        onUnmarshallingComplete(survey);
        return survey;
    } catch (Exception e) {
        throw new IdmlParseException(e);
    }
}
Also used : Survey(org.openforis.idm.metamodel.Survey) SurveyUnmarshaller(org.openforis.idm.metamodel.xml.internal.unmarshal.SurveyUnmarshaller) IOException(java.io.IOException)

Example 2 with SurveyUnmarshaller

use of org.openforis.idm.metamodel.xml.internal.unmarshal.SurveyUnmarshaller in project collect by openforis.

the class SurveyIdmlBinder method unmarshal.

public Survey unmarshal(Reader r, boolean includeCodeListItems) throws IdmlParseException {
    try {
        SurveyUnmarshaller unmarshaller = new SurveyUnmarshaller(this, includeCodeListItems);
        unmarshaller.parse(r);
        Survey survey = unmarshaller.getSurvey();
        onUnmarshallingComplete(survey);
        return survey;
    } catch (Exception e) {
        throw new IdmlParseException(e);
    }
}
Also used : Survey(org.openforis.idm.metamodel.Survey) SurveyUnmarshaller(org.openforis.idm.metamodel.xml.internal.unmarshal.SurveyUnmarshaller) IOException(java.io.IOException)

Aggregations

IOException (java.io.IOException)2 Survey (org.openforis.idm.metamodel.Survey)2 SurveyUnmarshaller (org.openforis.idm.metamodel.xml.internal.unmarshal.SurveyUnmarshaller)2