Example usage for com.google.common.graph AbstractGraph subclass-usage

List of usage examples for com.google.common.graph AbstractGraph subclass-usage

Introduction

In this page you can find the example usage for com.google.common.graph AbstractGraph subclass-usage.

Usage

From source file edu.uci.ics.jung.graph.DelegateCTree.java

class DelegateCTree<N> extends AbstractGraph<N> implements MutableCTree<N> {
    private final MutableGraph<N> delegate;
    private final Map<N, Integer> depths;
    private Optional<Integer> height;
    private Optional<N> root;