package de.brightbyte.rdf;

public interface Rdfalizer<V, R extends V, A, T> {
	public A getRdf(String namespace, String name, T obj) throws RdfException;
	public void addProperties(RdfProperties<V, R, A, T> props);
}
