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

org.openforis.collect.datacleansing.DataCleansingItem Maven / Gradle / Ivy

There is a newer version: 4.0.97
Show newest version
package org.openforis.collect.datacleansing;

import java.util.UUID;

import org.openforis.collect.model.CollectSurvey;
import org.openforis.idm.metamodel.PersistedSurveyObject;

public abstract class DataCleansingItem extends PersistedSurveyObject {

	private static final long serialVersionUID = 1L;

	protected DataCleansingItem(CollectSurvey survey) {
		super(survey);
	}
	
	protected DataCleansingItem(CollectSurvey survey, UUID uuid) {
		super(survey, uuid);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy