com.tinkerpop.blueprints.util.wrappers.WrapperGraph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blueprints-core Show documentation
Show all versions of blueprints-core Show documentation
Core interfaces and utilities for Blueprints
package com.tinkerpop.blueprints.util.wrappers;
import com.tinkerpop.blueprints.Graph;
/**
* A WrapperGraph has an underlying graph object to which it delegates its operations.
*
* @author Jordan A. Lewis (http://jordanlewis.org)
*/
public interface WrapperGraph {
/**
* Get the graph this wrapper delegates to.
*
* @return the underlying graph that this WrapperGraph delegates its operations to.
*/
public T getBaseGraph();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy