
com.aggrepoint.utils.linkedtable.RowHead 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 RowHead extends PropObject{
RowHead m_nextHead;
Node m_firstNode;
Node m_lastNode;
TRow m_value;
public RowHead(TRow header) {
m_value = header;
}
public RowHead find(TRow header) {
if (m_value.equals(header))
return this;
if (m_nextHead == null)
return null;
return m_nextHead.find(header);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy