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

org.protege.owl.rdf.impl.TrackingOntologyFormat Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.protege.owl.rdf.impl;

import org.semanticweb.owlapi.formats.RDFXMLDocumentFormat;
import org.semanticweb.owlapi.io.RDFResourceParseError;

public class TrackingOntologyFormat extends RDFXMLDocumentFormat {
	private boolean failed = false;
	
	@Override
	public void addError(RDFResourceParseError error) {
		super.addError(error);
		failed = true;
	}
	
	public boolean getFailed() {
		return failed;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy