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

com.tinkerpop.blueprints.util.wrappers.WrapperGraph Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
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