use of org.opendatakit.briefcase.model.IFormDefinition in project briefcase by opendatakit.
the class RetrieveAvailableFormsFromServer method doAction.
public void doAction() throws XmlDocumentFetchException, ParsingException {
List<RemoteFormDefinition> formDefs = Collections.emptyList();
formDefs = ServerFetcher.retrieveAvailableFormsFromServer(originServerInfo, terminationFuture);
for (IFormDefinition fd : formDefs) {
formStatuses.add(new FormStatus(FormStatus.TransferType.GATHER, fd));
}
}
Aggregations