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

Alachisoft.NCache.Common.DataStructures.RedBlackNodeReference Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package Alachisoft.NCache.Common.DataStructures;

/**
 * The RedBlackNode class encapsulates a node in the tree
 */
public class RedBlackNodeReference {
    /**
     * Red Black node reference.
     */
    private RedBlackNode _rbNode;

    public RedBlackNodeReference() {
    }

    /**
     * Default constructor.
     */
    public RedBlackNodeReference(RedBlackNode rbNode) {
        _rbNode = rbNode;
    }

    public final RedBlackNode getRBReference() {
        return _rbNode;
    }

    public final void setRBReference(RedBlackNode value) {
        _rbNode = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy