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

com.aggrepoint.utils.linkedtable.Node Maven / Gradle / Ivy

The newest version!
package com.aggrepoint.utils.linkedtable;

public class Node {
	ColumnHead m_col;
	RowHead m_row;
	Node m_nextInRow;
	Node m_nextInColumn;
	TValue m_value;

	public Node(ColumnHead col,
			RowHead row, TValue val) {
		m_col = col;
		m_row = row;
		m_value = val;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy