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

edu.uci.ics.jung.visualization.spatial.rtree.RTreeNode Maven / Gradle / Ivy

package edu.uci.ics.jung.visualization.spatial.rtree;

import java.util.Optional;

/**
 * contains the parent for Node implementations
 *
 * @param 
 */
public abstract class RTreeNode implements Node {

  protected Optional> parent = Optional.empty();

  public void setParent(Node node) {
    parent = Optional.of(node);
  }

  public Optional> getParent() {
    return parent;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy