
com.aggrepoint.utils.linkedtable.Node Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aputils Show documentation
Show all versions of aputils Show documentation
Common utilities used by both Dao and Winlet project
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