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

org.topbraid.jenax.util.TransparentWrappedGraph Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package org.topbraid.jenax.util;

import org.apache.jena.graph.Graph;
import org.apache.jena.graph.impl.WrappedGraph;

/**
 * A WrappedGraph that allows access to its delegate with a debug-friendly public method.
 * 
 * @author Holger Knublauch
 */
public class TransparentWrappedGraph extends WrappedGraph {

	public TransparentWrappedGraph(Graph delegate) {
		super(delegate);
	}
	
	
	public Graph getDelegate() {
		return base;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy